18

许多失败的 jQuery ajax 请求正在用错误污染我的控制台。查看产生这些控制台错误的代码(jQuery 1.7.2,第 8240 行)

                // Do send the request
                // This may raise an exception which is actually
                // handled in jQuery.ajax (so no try/catch here)
                xhr.send( ( s.hasContent && s.data ) || null );

我注意到评论解释了为什么没有try/catch那里。但是,即使我的请求中有一个明确的error回调函数,我仍然没有处理这些错误。jQuery.ajaxjQuery.ajax

如何处理 jQuery ajax 错误以使错误消息不会出现在控制台中?

编辑:下面是我执行 ajax 请求的代码片段,以及准确的错误消息(在 Chrome 中):

$.ajax({
    dataType: 'xml',
    url: "./python/perfdata.xml?sid=" + (new Date()),
    success: function (data) {
        var protocols = $("Protocols", data).children();

        parseData(protocols);
    },
    error: function (error) {
        setTimeout(getData, 200);
    }
});

这是 Chrome 错误消息:

GET
http://zeus/dashboard/python/perfdata.xml?sid=Thu%20May%2024%202012%2016:09:38%20GMT+0100%20(GMT%20Daylight%20Time)
jquery.js:8240
4

4 回答 4

6

您可以使用自定义函数来执行此操作

 $(document).ajaxError(ajaxErrorHandler); 

并在该处理程序中设置您需要做的任何事情

var ajaxErrorHandler = function () {
        //do something
    }
于 2012-05-24T15:10:33.470 回答
3

你试过了吗?

  $.ajaxSetup({
    timeout:10000,
    beforeSend: function(xhr) {
      //
    },
    complete:function(xhr,status) {
      //
    },      
    error: function(xhr, status, err) {
      switch (status){
      case 'timeout': {}
      case 'parseerror': {}
      case 'abort': {}
      case 'error': {}
      default: {}
      }
    }
  });
于 2012-05-30T14:07:28.897 回答
3

如果要进行测试,您可以尝试这个(在 chrome 中效果很好),方法是覆盖函数“send”:

$(function() {

    var xhr = null;

    if (window.XMLHttpRequest) {
        xhr = window.XMLHttpRequest;
    }
    else if(window.ActiveXObject('Microsoft.XMLHTTP')){
        // I do not know if this works
        xhr = window.ActiveXObject('Microsoft.XMLHTTP');
    }

    var send = xhr.prototype.send;
    xhr.prototype.send = function(data) {
        try{
            //TODO: comment the next line
            console.log('pre send', data);
            send.call(this, data);
            //TODO: comment the next line
            console.log('pos send');
        }
        catch(e) {
            //TODO: comment the next line
            console.log('err send', e);
        }
    };

    $.ajax({
        dataType: 'xml',
        url: "./python/perfdata.xml?sid=" + (new Date()).getTime(),
        success: function (data) {
            var protocols = $("Protocols", data).children();

            parseData(protocols);
        },
        error: function (error) {
            setTimeout(getData, 200);
        }
    });
});

​测试

于 2012-06-02T21:12:40.480 回答
1

我收到 500 个内部服务器错误,当它指向我时xhr.send( ( s.hasContent && s.data ) || null );

但是当我检查 apache 日志(内部服务器错误)时,错误是其他代码中的其他内容。

请检查一次。

于 2017-01-11T08:53:54.530 回答