12

如果我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
4

5 回答 5

29

您需要关闭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/

于 2013-07-31T22:14:40.800 回答
12

您需要在 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
    }
});
于 2014-11-26T11:03:48.817 回答
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);
}
于 2013-07-31T22:00:39.983 回答
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;    
        }
      }); 
}
于 2014-04-07T14:02:31.137 回答
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")
    }
}
于 2013-07-31T21:57:49.327 回答