gpt4 book ai didi

javascript - 嵌套的异步调用似乎没有按预期执行

转载 作者:行者123 更新时间:2023-11-30 10:41:12 25 4
gpt4 key购买 nike

在试用 jQuery 时,我有一个问题可能是新手犯的错误,但我似乎找不到解决方案。这是代码:

$.get("index.html", function() {
var i = 0;
for (; i < 3; i++)
{
var lDiv = document.createElement('div');
lDiv.id = 'body-' + i;
document.getElementById('body').appendChild(lDiv);
$.get('index.html', function(data) {
lDiv.innerHTML = "<p>Hello World " + i + "</p>";
});
}
});

输出似乎是

<div id='body-0'></div>
<div id='body-1'></div>
<div id='body-2'>
<p>Hello World 3</p>
</div>

我预计 lDiv.innerHTML= 代码会针对每个 i 执行,但显然它只针对最后一个 i 执行?我忽略了什么?

最佳答案

发生这种情况是因为循环完成(i 是 2)任何回调被触发之前。

@thecodeparadox 的解决方案有效,但它序列化了 HTTP 请求。 (让它们一次触发一个。)这允许请求并行执行,因此速度更快:

for (var i = 0; i < 3; i++)
{
var lDiv = document.createElement('div');
lDiv.id = 'body-' + i;
document.getElementById('body').appendChild(lDiv);
$.get('index.html', function(i,lDiv) { // the current iteration's `i` and `lDiv` are captured...
return function(data) {
lDiv.innerHTML = "<p>Hello World " + i + "</p>";
}
}(i,lDiv)); // ...by passing them as an argument to the self-executing function
}

关于javascript - 嵌套的异步调用似乎没有按预期执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10984058/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com