0

在 ajax 请求中,我需要使用从 ajax 请求返回的页面更新 olist[i] 。如何使 i 等于正确的索引,以便正确设置页面?我尝试将 _index: i 添加到 ajax,但无法访问它。

function GetPagesList() {
var str, page;
var deferredArr = [], deferr;
startTime = +new Date;

for (var i = 0; i < olist.length; i++) {
    str = [];
    if (olist[i].pagelist == 1) {
        //
    } else {
        deferr =
                $.ajax({
                    type: 'POST',
                    url: 'wfrmHelper.aspx/GetTop10PagesByKey',
                    data: "{Key: '" + olist[i].Key + "'}",
                    contentType: "application/json; charset=utf-8",
                    dataType: "json",
                    success: function(data) {
                        var o = $.parseJSON(data.d);

                        if (o != null) {
                            o.each(function(e, x) {
                                page = e.WebFormName;

                                if ($.inArray(page, Pages2Remove) == -1) {
                                    str.push(page);
                                    totalpages++;
                                }
                            });

                            olist[i].Pages = str; // need to set i
                        }
                    },
                    error: function(xhr, ret, e) {
                        alert('Error');
                    }
                });

        deferredArr.push(deferr);
    }
}

$.when.apply(this, deferredArr).then(function() {
    endTime = +new Date, delta = endTime - startTime;
    log('Total Pages ' + " took:" + delta.toString() + "ms");
});

}

4

3 回答 3

0

饱受诟病但知之甚少和不被赏识的with

with ({i:i})
{
    /* your ajax code referencing i*/
}
于 2013-01-24T19:18:59.417 回答
0

将其作为选项传递给 ajax 请求,然后使用 this.i 访问它。

$.ajax({
  ...
  index: i,
  ...
  success: function(data){
    ...
    alert(this.index);
    ...
  }
})
于 2013-01-24T19:02:39.320 回答
0

一种方法可能是使用闭包。

...
success: (function(i){
    return function(data) {
        ...
        olist[i].Pages = str;
        ...
    };
})(i),
...

未经测试。

于 2013-01-24T19:03:08.540 回答