gpt4 book ai didi

javascript - 替代异步 : false ajax

转载 作者:搜寻专家 更新时间:2023-11-01 05:23:18 25 4
gpt4 key购买 nike

我循环遍历一个数组,为每个数组运行一个 ajax 请求。我需要请求按顺序发生,所以我可以获取最后一个请求并在成功时运行函数。

目前我正在运行(简体):

$.each(array, function(i, item){
ajax_request(item.id, item.title, i);
})

function ajax_request(id, title, i){
$.ajax({
async: false,
url: 'url here',
success: function(){
if(i == array.length-1){
// run function here as its the last item in array
}
}
})
}

但是,使用 async:false 会使应用程序无响应/变慢。但是,如果没有 async:false,有时其中一个请求会挂起一点,并在最后发送的 ajax 请求返回后实际返回。

如何在不使用 async:false 的情况下实现它?

最佳答案

您可以使用本地函数来运行 ajax 调用,并且在每个连续的成功处理程序中,您可以启动下一个 ajax 调用。

function runAllAjax(array) {
// initialize index counter
var i = 0;

function next() {
var id = array[i].id;
var title = array[i].title;
$.ajax({
async: true,
url: 'url here',
success: function(){
++i;
if(i >= array.length) {
// run function here as its the last item in array
} else {
// do the next ajax call
next();
}

}
});
}
// start the first one
next();
}

在 2016 年用一个使用 promise 的选项更新了这个答案。以下是您如何连续运行请求:

array.reduce(function(p, item) {
return p.then(function() {
// you can access item.id and item.title here
return $.ajax({url: 'url here', ...}).then(function(result) {
// process individual ajax result here
});
});
}, Promise.resolve()).then(function() {
// all requests are done here
});

以下是并行运行它们并返回所有结果的方式:

var promises = [];
array.forEach(function(item) {
// you can access item.id and item.title here
promises.push($.ajax({url: 'url here', ...});
});
Promise.all(promises).then(function(results) {
// all ajax calls done here, results is an array of responses
});

关于javascript - 替代异步 : false ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22090764/

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