jQuery AJAX错误处理(HTTP状态代码)

时间:2012-10-04 19:44:48

标签: jquery ajax error-handling

我们有一个API,它使用正确的HTTP状态代码来处理错误,并使用JSON编码的响应和适当的Content-Type标头进行响应。我的情况是jQuery.ajax()在遇到HTTP错误状态而不是error回调时会触发success回调,所以即使我们有一个可理解的JSON响应,我们也必须诉诸像这样的东西:

$.ajax({
    // ...
    success: function(response) {
        if (response.success) {
            console.log('Success!');
            console.log(response.data);
        } else {
            console.log('Failure!');
            console.log(response.error);
        }
    },
    error: function(xhr, status, text) {
        var response = $.parseJSON(xhr.responseText);

        console.log('Failure!');

        if (response) {
            console.log(response.error);
        } else {
            // This would mean an invalid response from the server - maybe the site went down or whatever...
        }
    }
});

是否有更好的范例,而不是在每个jQuery.ajax()调用中的两个位置执行相同的错误处理?它不是很干,而且我确定在这些情况下,我在错误处理方法上错过了某些地方。

1 个答案:

答案 0 :(得分:42)

查看jQuery.ajaxError()

它捕获了可以通过多种方式处理的全局Ajax错误:

if (jqXHR.status == 500) {
  // Server side error
} else if (jqXHR.status == 404) {
  // Not found
} else if {
    ...

或者,您可以自己创建一个全局错误处理程序对象,并选择是否调用它:

function handleAjaxError(jqXHR, textStatus, errorThrown) {
    // do something
}

$.ajax({
    ...
    success: function() { ... },
    error: handleAjaxError
});