使用Spring进行AJAX错误处理

时间:2014-05-21 10:30:51

标签: ajax spring web.xml

 error: function(xhr, exception) {
    if (xhr.status === 0) {
        alert('Not connect.\n Verify Network.');
        } else if (xhr.status == 404) {
        alert('Requested page not found. [404]');
        } else if (xhr.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');
    }
}

我在项目中使用AJAX。在这里我捕获错误,它会弹出警报。但我想使用Spring(web.xml)处理xhr错误。可能吗?我该怎么做。

0 个答案:

没有答案
相关问题