-1

当帖子失败时,您调用哪个 jQuery AJAX 事件?例如,如果站点记录此消息:

POST http://s-t-h-c.appspot.com/dispatch 500 (Internal Server Error)

哪个 AJAX 事件处理程序处理它?例如,如果请求成功,我们可以使用:

$.ajax({

success: function() {
}

});

我已经尝试过error:and ajaxError:,但他们似乎无法解决这个问题。

任何帮助将非常感激!谢谢!

~地毯嘶嘶声

4

2 回答 2

1

当您添加success:类似时,error:在 ajax 中有

作为示例代码,我将在这里发布一个

  $.ajax({
    type: 'GET',
    dataType: 'json',
    url: url,
    timeout: 5000,
    success: function(data, textStatus ){
       alert('request successful');
    },
    error: function(xhr, textStatus, errorThrown){
       alert('request failed');
    }
  });

干杯!

于 2013-09-24T05:07:21.910 回答
0
$.ajax(

        {

        type: "GET",

        cache: false,

        url: url,

        dataType: "xml",

        contentType: "text/html",

        success: processData,

        error: errorAlert

        }); //end of AJax



//Package the code that handles

        //error message in case the request

        //is not successful:

        function errorAlert(e, jqxhr)

        {

        alert("Your request was not successful: " + jqxhr);

        }
于 2013-09-24T05:00:35.793 回答