JSONP请求错误处理

我正在发出ajax jsonp请求,但是失败错误处理无法正常工作。如果请求为404或500,则不会处理该错误。

我一直在四处寻找答案,但找不到任何东西。http://code.google.com/p/jquery-

jsonp/似乎有一种解决方案,但是我找不到任何有关如何使用它的示例。

function authenticate(user, pass) {       

$.ajax ({

type: "POST",

url: "url",

dataType: 'jsonp',

async: false,

//json object to sent to the authentication url

data: {"u": userid, "p": pass},

success: function (data) {

//successful authentication here

console.log(data);

},

error: function(XHR, textStatus, errorThrown) {

alert("error: " + textStatus);

alert("error: " + errorThrown);

}

})

}

回答:

处理错误的两种方法

  1. 跨域JSONP请求没有错误处理。使用Github https://github.com/jaubourg/jquery-jsonp上提供的jsonp插件,该插件 提供对错误处理的支持。

  2. jQuery ajax超时-在合理的时间后触发错误回调的超时,因为它可能会静默失败。您可能不知道实际的错误(或错误状态)是什么,但至少可以处理该错误

以上是 JSONP请求错误处理 的全部内容, 来源链接: utcz.com/qa/402954.html

回到顶部