氟利昂的答案可能有效,这是另一种选择,尝试强制dataType
转换为 JSON。
// This is the signature for $.post
jQuery.post( url [, data] [, success(data, textStatus, jqXHR)] [, dataType] )
$.post("api/authenticate", {"authkey": authkey}, function(data){
console.log(data);
if (data.success === "false") {
window.location="/Login.html";
}
}, "json");
另一个要寻找的想法是确保您的服务器以 2xx 状态响应。如果返回不同的状态,jQuery
将不会尝试读取响应。相反,它将查找在statusCode
传递给http://api.jquery.com/jQuery.ajax/的选项中设置的状态代码处理程序
例子
jQuery.ajax( "api/authenticate", {
data: {"authkey": authkey},
dataType: 'json',
statusCode: {
306: function(jqXhr, errorType) {
alert('Could not login')
// If you still want to access the response, it's accessible as raw text
// If it's JSON, you have to parse it.
alert (jqXhr.responseText);
}
}
});