jQuery:
$.ajax({
url : url,
type : 'GET',
dataType: 'json',
data: {
'FN' : 'GetPages',
'PIN' : '7659'
},
xhrFields: {
withCredentials: true
},
crossDomain: true,
success: function(data) {
alert('succsess');
console.log('data', data);
},
error: function (xhr, ajaxOptions, thrownError) {
alert('error');
console.log(xhr.status);
console.log(thrownError);
}
});
Firebug 火狐网络
发生什么了
AJAX“错误:”事件被触发,我的console.log输出是:
xhr.status -> 0
throwError -> (空字符串)
这是正常的吗?当我在浏览器中输入 URL 时,我会收到包含 JSON 内容的文件下载,这应该不是问题吧?