2

クラシック モードでコードを実行すると問題なく動作しますが、統合モードで実行すると失敗します。

コードは次のとおりです。

function callAjax(method, request, callback) {
    http = newHTTP();
    http.open('POST', url, true);
    setupHeaders(http, method);
    http.onreadystatechange = function () { http_onreadystatechange(http, callback); }
    http.send(JSON.stringify(request));
    return request.id; 
    }


function newHTTP() {
if (typeof (window) != 'undefined' && window.XMLHttpRequest)
return new XMLHttpRequest(); /* IE7, Safari 1.2, Mozilla 1.0/Firefox, and Netscape 7 */
else
return new ActiveXObject('Microsoft.XMLHTTP'); /* WSH and IE 5 to IE 6 */
} 


function http_onreadystatechange(sender, callback) {
if (sender.readyState == /* complete */4) {
var response = sender.status == 200 ?
JSON.parse(sender.responseText) : {};
response.xmlHTTP = sender;
callback(response);
}
if (sender.readyState == 2 || sender.readyState == 3) {
}
} 

 function setupHeaders(http, method) {
http.setRequestHeader('Content-Type', 'text/plain; charset=utf-8');
http.setRequestHeader('X-JSON-RPC', method);
}

クラシック モードで実行すると、次の応答が返されます。

"{"id":0,"result":{"serverInfo":{"totalCount":2,"serviceName":"FluorineFx.PageableResult","version":1,"cursor":1,"id":null,"columnNames":["ApplicationId","ApplicationParentID","ParentApp","ChildApp"],"initialData":[[1158,1153,"Apps","App_Application1"],[3159,3161,"Databases","DB_Database1"]]}}}"

一方、統合モードで実行すると、次のように返されます: -

"



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



<html xmlns="http://www.w3.org/1999/xhtml">

<head><title>



</title></head>

<body>

    <form method="post" action="xxxxx...." id="form1">

<div class="aspNetHidden">

<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEXXXXLTE2MTY2ODcyMjlkZLGuNeIyaZaly9gcTafYavVTQG2payFqxE2OaB+1PjxT" />

</div>



    <div>



    </div>

    </form>

</body>

</html>

"

上記の応答により、次の行の http_onreadystatechange() メソッド内で失敗します: -

var response = sender.status == 200 ?
JSON.parse(sender.responseText) : {};

私の問題は、統合モードで実行しているときに奇妙な応答を返すのはなぜですか?

4

0 に答える 0