jQuery ajax,一直调用error方法。

jQuery ajax,一直调用error方法。


慕娘9325324
浏览 799回答 1
1回答

皈依舞

  一直调用error方法,请求失败时调用此函数。有以下三个参数:XMLHttpRequest 对象、错误信息、(可选)捕获的异常对象。  如果发生了错误,错误信息(第二个参数)除了得到null之外,还可能是"timeout", "error", "notmodified" 和 "parsererror"。  参考如下:  $.ajax({  url : "/education2/json/getSearchQuestionknowledgeview",  type: "post",  data : params,  dataType : "json",  cache : false,  error : function(textStatus, errorThrown) {  alert("系统ajax交互错误: " + textStatus);  },  .....  调试停在alert("系统ajax交互错误: " + textStatus);处,然后在firebug右边的监控窗口看"textStatus",展开看有详细错误细节.errorThrown中有错误类型。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JQuery