在 Chrome 更新之前,我的代码运行良好。
我对我的服务器进行了 ajax 调用。我的服务器收到呼叫,向客户端返回 JSON,但答案始终为空。当我查看 Fiddler 时,我会从服务器得到答案。
我尝试使用 JQuery,也尝试使用 xmlhttp 调用。总是一样的结果
新的 CORS 政策规则是否适用...?
有我的 xmlHTTP 调用
var xmlhttp = new XMLHttpRequest(); // new HttpRequest instance
var theUrl = "URL";
xmlhttp.open("POST", theUrl);
xmlhttp.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
xmlhttp.send('{ "args" :{ "Obj":"my obj"}}');
xmlhttp.onreadystatechange = function(state,xhh,aaa){
if (xmlhttp.readyState == XMLHttpRequest.DONE) {
alert(xmlhttp.responseText);
}
}
ajax调用类似
$.ajax({
url: "URL",
data: '{ "args" :{ "Obj":"my obj"}}',
dataType: "json",
contentType: "application/json; charset=utf-8",
type: "POST",
async: false,
error: function (xhr, ajaxOptions, thrownError) {
if (that.Fail != null) {
that.Fail();
}
},
success : function(data){
alert(data);
}
})