我正在使用can be found on this link的例子。
我的JSONP内容如下:
myRun (
{
"Status": "SUCCESS",
"Name": "Apple Inc",
"Symbol": "AAPL",
"LastPrice": 106.82,
"Open": 106.62
}
)
我在下面使用的代码不起作用。而且我不确定如何重新组织它以使用JSONP。
var selfish = this;
$.getJSON('http://dev.markitondemand.com/MODApis/Api/v2/Quote/jsonp?symbol=AAPL&callback=myRun', function(data){
console.log(selfish.data.Symbol);
});
答案 0 :(得分:1)
$.ajax({
url: "url",
dataType: 'JSONP',
jsonpCallback: 'callback',
type: 'GET',
success: function (data) {
if (data.error) {
console.log ("data error:", data.error.errorMessage);
}
},
error: function (data) {
console.log ("ajax connection error:");
}
});