我有以下代码检测有关ajax的任何错误,我需要专门为ajax获取“abort”错误。
怎么做?
$(document).bind("ajaxError", function (e, jqXHR, ajaxSettings, thrownError) {
});
我不确定if (thrownError == "abort")
是否是正确的方法。
答案 0 :(得分:3)
是的,你在那里看到了这个
$(function() {
$.ajaxSetup({
error: function(jqXHR, exception) {
if (jqXHR.status === 0) {
alert('Not connect.n Verify Network.');
} else if (jqXHR.status == 404) {
alert('Requested page not found. [404]');
} else if (jqXHR.status == 500) {
alert('Internal Server Error [500].');
} else if (exception === 'parsererror') {
alert('Requested JSON parse failed.');
} else if (exception === 'timeout') {
alert('Time out error.');
} else if (exception === 'abort') {
alert('Ajax request aborted.');
} else {
alert('Uncaught Error.n' + jqXHR.responseText);
}
}
});
});
供参考http://www.sitepoint.com/jquery-ajax-error-handling-function/
希望它可能会有所帮助:)