使用Prototype.AJAX发送排队的消息

时间:2010-08-09 09:25:18

标签: javascript ajax queue prototypejs design-patterns

是否有任何最佳实践模式来实现发送有序请求的队列?我知道这会触及异步请求背后的逻辑,但在特殊情况下,需要排队发送:)

这是我的第一次尝试:

this.queue = [],
this.sending = false,  
send: function(message) {
    if (this.sending) {
        this.queue.push(message);
    } else {
        else this.push(message);
    }
},
push: function(message) {
    this.sending = true;
    new Ajax.Request(this.outURL + "&message=" + encodeURIComponent(message), {
        onSuccess: function() {
            this.sending = false;
            if (this.queue.size() > 0) {
                this.push("queued: " + this.queue.shift());
            }
        }.bind(this)
    });
},

有没有更好的实施? 提前谢谢你:)

1 个答案:

答案 0 :(得分:0)

不要一个人死!我认为你的类/命名空间可能有点乱,因为你的混音:和=(你不能在对象{}命名空间内使用=)

AjaxQueue = {
    outURL: '/ajax.html',
    queue: [],
    sending: false,

    //Stick message on the queue array
    send: function(message) {
        this.queue.push(message);
        this.iterate();
    },
    //If theres a message on the queue array send it, then recursively calls itself
    iterate: function() {
        message = this.queue.pop()
        //this will be false and stop recursion when there are no more messages
        if (message)
        {
            new Ajax.Request(this.outURL, {
                //no need to use string appending or encodeURL, prototype does this for you
                parameters: {message: message},
                method: 'GET',
                onSuccess: function() {
                    //recursion.  We avoid this because it wont be in scope
                    AjaxQueue.iterate()
                }
            });
        }
    }
}

要测试的代码

AjaxQueue.send('First Message'); AjaxQueue.send('Second message'); AjaxQueue.send('Third Message')

尝试使用真正的大文件或慢速脚本,您将看到队列功能正常工作。