循环中的jQuery.ajax()

时间:2013-07-31 21:52:30

标签: ajax jquery xmlhttprequest

如果我在循环中调用jQuery.ajax(),是否会导致当前迭代中的调用覆盖最后一次调用,或者是否为新请求分配了新的XHR对象?

我有一个执行此操作的循环,而从控制台日志中我可以看到请求已完成200 ok但是只有循环中最后一个请求的结果数据由请求success callback存储。

代码:

var Ajax = {
    pages: {},

    current_request: null,

    prefetch: function () {
        currentPath = location.pathname.substr(1);

        if(this.pages[currentPath])
        {
            var current = this.pages[currentPath];
            delete this.pages[currentPath];

            current['name']=currentPath;
            current['title']=$("title").text().replace(' - '.SITE_NAME, '');
            current['meta_description']=$("meta[name=description]").attr('content');
            current['meta_keywords']=$("meta[name=keywords]").attr('content');          
        }

        var _Ajax = this;
        //the loop in question *****
        for(var key in this.pages)
        {
            $.ajax({
                method: 'get',
                url:'http://'+location.hostname+'/'+key,
                success: function(data) {
                    _Ajax.pages[key] = data;    
                }
            }); 

                    console.debug(this.pages);
        }

        if(current)
        {
            this.pages[currentPath] = current;
        }       

    } 
};//Ajax Obj
for(var i in pages)
{
    Ajax.pages[pages[i]]={};
}

$(function() {
    Ajax.prefetch();
});//doc ready

5 个答案:

答案 0 :(得分:27)

key

需要一个闭包
for(var k in this.pages){
    (function(key){
            $.ajax({
                method: 'get',
                url:'http://'+location.hostname+'/'+key,
                success: function(data) {
                    _Ajax.pages[key] = data;    
                }
            }); 

            console.debug(this.pages);
    })(k);
}

通过这种方式,您可以确保每个ajax成功回调中的密钥始终正确。 但除此之外它应该工作

我使用超时而不是ajax做了一个小闭包演示,但原理是一样的:

http://jsfiddle.net/KS6q5/

答案 1 :(得分:9)

您需要在ajax请求中使用 async:false 。它将同步发送ajax请求,等待上一个请求完成,然后发送下一个请求。

$.ajax({
    type: 'POST',
    url: 'http://stackoverflow.com',
    data: data,
    async: false,
    success: function(data) {
        //do something
    }, 
    error: function(jqXHR) {
        //do something
    }
});

答案 2 :(得分:6)

我相信这里发生的事情与关闭有关。在这个循环中:

    for(var key in this.pages)
    {
        $.ajax({
            method: 'get',
            url:'http://'+location.hostname+'/'+key,
            success: function(data) {
                _Ajax.pages[key] = data;    
            }
        }); 

                console.debug(this.pages);
    }

变量key实际上是在for循环之外定义的。因此,当您进入回调时,该值可能已更改。尝试这样的事情:

http://jsfiddle.net/VHWvs/

var pages = ["a", "b", "c"];

for (var key in pages) {
    console.log('before: ' + key);
    (function (thisKey) {
        setTimeout(function () {
            console.log('after: ' + thisKey);
        }, 1000);
    })(key);
}

答案 3 :(得分:3)

我遇到了同样的情况,我解决了在新函数中使用ajax调用然后将函数调用到循环中。

看起来像是:

function a(){
    for(var key in this.pages)
    {
      var paramsOut [] = ...
      myAjaxCall(key,paramsOut);
      .......
    }
}
function myAjaxCall(paramsIn,paramsOut)
{
       $.ajax({
        method: 'get',
        url:'http://'+location.hostname+'/'+paramsIn[0],
        success: function(data) {
            paramsOut[key] = data;    
        }
      }); 
}

答案 4 :(得分:2)

这就是我总是做ajax循环的方式..

我使用在xhr.readyState == 4

之后调用的递归函数
i = 0
process()
function process() {
    if (i < 10) {
        url = "http://some.." + i
        var xhr = new XMLHttpRequest();
        xhr.open("GET", url, true);
        xhr.onreadystatechange = function () {
            if (xhr.readyState == 4) {
                alert(xhr.responseText)
                i++
                process()
            }
        }
        xhr.send();
    } else {
        alert("done")
    }
}