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 Firefox ネットワーク
何が起こるのですか
AJAX "error:" イベントがトリガーされ、console.logの出力は次のようになります。
xhr.status -> 0
throwError -> (空の文字列)
これは正常ですか?ブラウザーに URL を入力すると、JSON コンテンツを含むファイルのダウンロードが表示されますが、これは問題ではないでしょうか?