我的网络应用程序正在尝试从属于其他域的其他服务器访问该信息。由于它是一个跨域的ajax调用,我使用“dataType”作为“JSONP”而不是JSON。
现在在WebInspector->网络选项卡,我看到请求成功并且填充了响应。但是从不调用success()函数。它总是调用status = 200的错误函数。
由于它是一个JSONP请求,jQuery附加“callback =?”到URL的末尾,即使在获得有效响应之后也从未调用回调方法。不确定出了什么问题?
$(document).ready(function() {
// When you click the Get Instances button:
$('#getInstances').click(function(){
$.ajax({
type: "GET",
url: "http://178.28.167.221:8080/us-east-1/instance/list.json",
contentType: "application/json; charset=utf-8",
accept: "application/json",
crossDomain: "true",
headers: {'Access-Control-Allow-Origin','*'},
dataType: "jsonp",
success: function(msg) {
result = JSON.stringify(msg);
var obj = $.parseJSON(result);
console.log(obj);
$('#instancesTable').append('<tr><td>' + obj.autoScalingGroupName + '</td><td>' + obj.amiId + '</td><td>' + obj.instanceId + '</td><td>' + obj.instanceType +'</td></tr>');
},
error: function(xhr, ajaxOptions, thrownError, textStatus, responseText) {
console.log(name + ' environment failed with error: ' + xhr.status + " " + thrownError);
var errorMessage = "Error";
if (xhr.status == 0) {
errorMessage = "Can't Connect";
}
}
});
});
});
我还通过在我的ajax请求中包含以下内容进行了验证:
jsonp: 'callback',
jsonpCallback: 'jsonpCallback'
并定义回调函数如下:
function jsonpCallback(data){
alert("jsonpCallback");
}
jsonCallback从未被调用,即使请求成功并且可以从服务器获得响应(显示在WebInspector的“网络”选项卡中)。
服务器的响应是一个JSON对象数组。 [{JSON1},{JSON2} ..]
注意:我尝试将contentType更改为“application / javascript”,因为响应是一个JSON对象数组。但没有任何效果:(
答案 0 :(得分:0)
我有类似的问题并解决了它。 您尚未指定您的服务。 就我而言,它是一个WCF服务。
我不得不加上这个。
<webHttpBinding>
<binding name="webHttpBindingWithJsonP" crossDomainScriptAccessEnabled="true" />
</webHttpBinding>
并在服务
中将绑定配置设置为上述内容即:bindingConfiguration="webHttpBindingWithJsonP"
这解决了这个问题。它们可能是在PHP或其他平台上实现相同目的的类似方法