我得到'错误'几乎无论我在jquery的ajax方法中使用dataType'jsonp'加载什么,但是使用'json'对于相同的json内容工作正常。我需要使用jsonp,因为我正在调用外部API来处理。
Js方法:
$.ajax({
url: 'test3.json',
type: 'GET',
dataType: 'json',
data: {
action: 'APICALL',
ID: '59'
},
success: function(data, textStatus, xhr) {
console.log('success');
},
error: function(data, textStatus, xhr) {
console.log('error: '+textStatus);
console.log(data);
},
complete: function(data, textStatus, xhr) {
console.log('complete');
}
});
})
test3.json文件:
{"symbol": "IBM", "price": "91.42"}