我需要进行ajax调用404结果不是错误!
之类的东西if(xhr.status == 404){
//This is not a error ajax! dont treat it as such!
}
else{
//Ok this is a error... go KABUM on the user!
}
答案 0 :(得分:0)
有办法处理ajax错误。
第一个全球:
$(document).ajaxError(function(e, xhr, settings, exception) {
if(xhr.status==404) {
}
});
和第二个:
$.ajax({
...
error: function (xhr, ajaxOptions, thrownError) {
if(xhr.status==404) {
}
}
});