当我在HTML页面上执行此操作时
complete: function(xhr, statusText){
alert(xhr.status);
},
我将警报设为“0”
当我做的时候
complete: function(xhr, statusText){
alert(statusText);
},
我收到一个带有“错误”的警告框
我的GET请求是
$.ajax({
type: 'GET',
url:'http://......',
dataType: "json",
complete: function(xhr, statusText){
alert(xhr.status);
},
success: function(data, textStatus, jqXHR){
alert("success: ");
},
error: function(data, textStatus, jqXHR){
alert("error");
alert(JSON.stringify(data));
},
});
}
我是web dev的新手,但我倾向于认为这是服务器端错误。我有一个在Heroku上托管的服务器,我试图向服务器发送GET请求但是无法做到,有什么可能是错的?