2

这与Wait until all jQuery Ajax requests are done非常相似?,除了我想知道在 Mootools 中这样做的最佳实践。

4

1 回答 1

2

http://mootools.net/docs/more/Request/Request.Queue

除了这些事件之外,还有一个 onEnd 事件会在所有请求完成时触发。

我将从文档中扩展示例:

var myRequests = {
    r1: new Request({
        url: '/foo1.php', data: { foo1: 'bar1'},
        onComplete: function(text, xml){
            console.log('myRequests.r1: ', text, xml);
        }
    }),
    r2: new Request({
        url: '/foo2.php', data: { foo2: 'bar2'},
        onComplete: function(text, xml){
            console.log('myRequests.r2: ', text, xml);
        }
    })
};
var myQueue = new Request.Queue({
    requests: myRequests,
    concurrent: myRequests.length,
    onEnd: function() {
        console.log('Everything is done!');
    },
    onComplete: function(name, instance, text, xml){
        console.log('queue: ' + name + ' response: ', text, xml);
    }
});

myQueue.send();
于 2013-09-14T04:29:56.807 回答