2

これは、すべての jQuery Ajax リクエストが完了するまで待機しますか?とよく似ています。ただし、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 に答える