将$ .when()/ $ .promise()与包含AJAX的函数一起使用

时间:2013-01-31 21:15:02

标签: javascript ajax jquery jquery-deferred

很难解决这个问题,而且我知道$.when()可以这样使用(有多个AJAX语句)来保证你完成所有这些。

http://jsfiddle.net/M93MQ/

    $.when(
        $.ajax({ url: '/echo/html/', success: function(data) {
            alert('request 1 complete')
          }
        }),

        $.ajax({ url: '/echo/html/', success: function(data) {
            alert('request 2 complete')
          }
        })
    ).then( function () { alert('all complete'); });

但这仅适用于原始$.ajax(),无论如何都有相同的功能带有函数调用,反过来又有ajax(和其他随机逻辑)?< / p>

伪代码的想法:

    // The functions having the AJAX inside them of course
    $.when(ajaxFunctionOne, ajaxFunctionTwo).then(function () {
        alert('all complete'); 
    });

1 个答案:

答案 0 :(得分:6)

当然,让函数返回一个promise对象。

function ajaxFunctionOne() {
    return $.ajax(...)
}
function ajaxFunctionTwo() {
    var dfd = $.Deferred();
    // on some async condition such as dom ready:
    $(dfd.resolve);
    return dfd.promise();
}

function ajaxFunctionThree() {
    // two ajax, one that depends on another
    return $.ajax(...).then(function(){
        return $.ajax(...);
    });
}   

$.when(ajaxFunctionOne(),ajaxFunctionTwo(),ajaxFunctionThree()).done(function(){
    alert("all complete")
});