0

我有一些 ajax 调用,我想在其中添加处理程序以防出现错误。我找到了“错误”处理程序,但这不起作用,即当互联网连接丢失时。这些案件是否有第二个处理程序?

$.ajax({
      type: "GET",
      url: "dosomethink.php",
      success: function (data) {
        $('#abc').html(data);
      },
      error: function (xhr, ajaxOptions, thrownError) {
        alert(xhr.status);
        alert(thrownError);
      }
    });
4

1 回答 1

0

如果您使用超时和错误方法怎么办

$.ajax({type: 'GET',url: '/controller/action',timeout: 15000,success: function(data) {},error: function(XMLHttpRequest, textStatus,errorThrown) {}});
于 2015-07-22T04:44:06.107 回答