Ajax调用错误:完成:function(xhr,statusText){alert(xhr.status); },

时间:2012-07-17 22:23:40

标签: javascript ajax html5 jquery

当我在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请求但是无法做到,有什么可能是错的?

0 个答案:

没有答案