gpt4 book ai didi

javascript - 循环中多次 AJAX 调用的回调

转载 作者:行者123 更新时间:2023-11-30 09:19:10 24 4
gpt4 key购买 nike

我有这个代码:

var results = [];

for(var i = 0; i < 4; i++){
$.ajax(... results.push(response));
}

我想知道这 4 个 ajax 调用何时完成,然后对结果数组做些什么,我该怎么做?

最佳答案

不是预先创建一个results数组,而是创建一个promises数组($.ajax调用算作promises),然后您可以在数组上使用 Promise.all。一旦所有调用都解析,Promise.all 将解析为四个响应的数组:

const promises = [];
for (let i = 0; i < 4; i++) {
promises.push($.ajax(....));
}
Promise.all(promises).then((results) => {
// do stuff with results
})
.catch((err) => {
// handle errors
});

关于javascript - 循环中多次 AJAX 调用的回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52921928/

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