我正在使用jsonp和ajax访问另一台服务器上的Web服务。这是jQuery:
$.ajax({
type: 'GET',
url: wsurl + 'callback=?',
dataType: 'jsonp',
crossDomain: true,
error: function(data) {
console.log('error', data);
},
success: function(data) {
console.log('success', data);
},
complete: function() {
console.log('done');
}
});
问题是正在调用错误回调。它给了我这个非常有用的信息:
{
readyState: 4,
status: 200,
statusText: "success"
}
这是我正在调用的json文件:
{
"id": 0,
"room_number": "0",
"first_name": "Admin",
"last_name": "Istrator",
"password": "",
"salutation": "Mr.",
"telephone": "",
"email": "",
"description": "admin",
"checkin_date": 915797106000,
"checkout_date": 4071557106000,
"last_login_date": 947333106000,
"active_status": true,
"created_date": 915797106000,
"created_by": 0,
"reference_id": ""
}
我首先尝试使用getJSON jQuery方法,结果相同。以为我会尝试基础ajax方法,因为它有更多的控制权,但正如你所看到的,没有运气。那么,请注意我做错了什么?知道为什么它会抛出错误并为statusText属性提供一个成功的值吗?
好吧,我在ajax调用中添加了一些选项,并从url中删除了回调参数。这是新的ajax调用:
$.ajax({
type: 'GET',
url: wsurl,
dataType: 'jsonp',
crossDomain: true,
error: function(xhr, textStatus, errorThrown) {
console.log('textStatus: ' + textStatus);
},
success: function(data) {
console.log('success');
console.log(data);
}
});
我收到了一个新错误,我想这很好,但仍然无法正常工作。区别在于textStatus现在是“parsererror”。控制台也在json文件的第一行引发语法错误:
Uncaught SyntaxError: Unexpected token :
想法?
答案 0 :(得分:1)
好吧有几件事情在我身上跳了出来:
$.ajax({
type: 'GET',
#You do not need to append the callback as you have jsonp configured it will do it
#automatically append the callback=<auto generated name>
url: wsurl,
dataType: 'jsonp',
crossDomain: true,
error: function(data) {
console.log('error', data);
},
success: function(data) {
console.log('success', data);
},
complete: function() {
console.log('done');
}
});
此外,您的返回似乎不会包含在jsonp工作所需的函数中。
<auto generated name>({ json object })
回调函数将由jquery自动命名。所以你需要一个服务来接受一个回调参数并返回一个带填充的json对象。
答案 1 :(得分:0)
不确定这是否是问题,但您的网址不正确。根据jQuery文档,它应该自动附加?callback =?为你:
答案 2 :(得分:0)
从URL中删除回调并尝试用这样的东西包装json(php示例,$ _GET ['callback']由jQuery自动设置):
$_GET['callback'] . '({
"id": 0,
"room_number": "0",
"first_name": "Admin",
"last_name": "Istrator",
"password": "",
"salutation": "Mr.",
"telephone": "",
"email": "",
"description": "admin",
"checkin_date": 915797106000,
"checkout_date": 4071557106000,
"last_login_date": 947333106000,
"active_status": true,
"created_date": 915797106000,
"created_by": 0,
"reference_id": ""
})'