是否有jQuery的AJAX调用任何模拟到“最后”?(Is there any analog to

2019-08-21 07:01发布

是否有jQuery的AJAX调用Java“终于”模拟? 我在这里有这个代码。 在我的总是我抛出一个异常,但是我总是希望它去的,然后()方法。

    call.xmlHttpReq = $.ajax({
        url : url,
        dataType : 'json',
        type : 'GET'
    }).always(function(processedDataOrXHRWrapper, textStatus, xhrWrapperOrErrorThrown) {

       throw "something";

    }).then(function() {

        alert("i want to always run no matter what");
    });

我曾尝试使用()完成完成(),和另一个总是(),但似乎没有任何工作。

这里的jsfiddle:

http://jsfiddle.net/qv3t3L0m/

Answer 1:

见下面的例子:

$.ajax({
        type: "GET",
        dataType: dataType,
        contentType: contentType,
        async: TRUE,
        url: $('html form:nth-child(1)').attr('action') + "?" $('html form:nth-child(1)').serialize(),
        success: function(data) {
            console.log("FUNFOU!");
        },
        error: function(data) {
            console.log("NÃO FUNFOU!");
        },
        complete: function(data) {
            console.log("SEMPRE FUNFA!"); 
            //A function to be called when the request finishes 
            // (after success and error callbacks are executed). 
        }
    });

欲了解更多信息: http://api.jquery.com/jquery.ajax/



Answer 2:

.always()应该工作。 见在该jqXHR对象部分http://api.jquery.com/jQuery.ajax/ 。

jqXHR.always(功能(数据| jqXHR,textStatus,jqXHR | errorThrown){}); 一种替代构造为完全回调选项,()方法代替了已过时.complete()方法。总是。

响应于成功的请求,该函数的参数是相同的.done():数据,textStatus和jqXHR对象。 对于失败的请求参数是相同.fail的():在jqXHR对象,textStatus和errorThrown。 请参阅deferred.always()的实施细节。

又见http://api.jquery.com/deferred.always/



Answer 3:

下面的建议不会在jQuery的工作,因为jQuery的承诺落实不处理传递给方法,然后抛出错误。 我只是在这里留下他们作为什么可能是可能的,如果是jQuery的承诺/ A +兼容的说明。 作为BERGI正确地指出,你必须手动换行代码在自己的try catch块。

call.xmlHttpReq = $.ajax({
    url : url,
    dataType : 'json',
    type : 'GET'
}).then(function(processedDataOrXHRWrapper, textStatus, xhrWrapperOrErrorThrown) {

   throw "something";

}).always(function() {

    alert("i want to always run no matter what");
});

虽然我不知道如果jquery的承诺,一如既往地支持,替代将是随后(再)使用,并通过相同的功能,既successHandler和的ErrorHandler,就像这样:

call.xmlHttpReq = $.ajax({
    url : url,
    dataType : 'json',
    type : 'GET'
}).then(function(processedDataOrXHRWrapper, textStatus, xhrWrapperOrErrorThrown) {

   throw "something";

}).then(function() {

    alert("i want to always run no matter what");
},
function() {

    alert("i want to always run no matter what");
});


Answer 4:

对于那些谁使用jQuery 3.0和更高版本刚一说明

弃用通知:jqXHR.success(),jqXHR.error(),和jqXHR.complete()回调除去的jQuery 3.0。 您可以使用jqXHR.done(),jqXHR.fail(),和jqXHR.always()代替。

作为正式文件



Answer 5:

有一个bug AJAX是依赖于服务器上,需要检查“完成”的状态是最好的,是一种“成功”,“错误”和别人是不PUT,POST的100%和GET ...看看在一个例子

$.ajax({
    url: '/api/v2/tickets/123456.json',
    ....
    ....
    ....
    complete: function(data) { 
        if (data.statusText == "success") { 
            console.log("Sent successfully");
        } else { 
            console.log("Not Sent");
        }
    }
});

对不起的英文不好! 陈绮贞;-)



Answer 6:

如果你想为所有的Ajax请求一个代码定义,你可以像下面这样做

$(document).ajaxComplete(function () {
    console.log('ajax complete on doc');
})


文章来源: Is there any analog to a 'finally' in jQuery AJAX calls?