gpt4 book ai didi

javascript - 在 Jscript 中为 Q.all() 构建动态函数数组

转载 作者:数据小太阳 更新时间:2023-10-29 05:15:48 28 4
gpt4 key购买 nike

我正在尝试将可变数量的函数传递给 Q.all()

如果我手动对数组进行编码,它会工作正常 - 但是我想在一个循环中构建它,因为系统在运行时之前不知道调用该函数多少次 - 并且需要为每个 AJAX 传递一个不同的 ID打电话。

我尝试了各种方法都没有成功(例如 array[i] = function() {func})——我想 eval() 可能是最后一个度假村。

任何帮助都会非常有帮助。

// Obviously this array loop wont work as it just executes the functions in the loop
// but the idea is to build up an array of functions to pass into Q
var arrayOfFunctions = [];

for(var i in NumberOfPets) {
arrayOfFunctions[i] = UpdatePets(i);
}


// Execute sequence of Ajax calls
Q.try(CreatePolicy)
.then(updateCustomer)
.then(function() {

// This doesn't work - Q just ignores it
return Q.all(arrayOfFunctions)

// This code below works fine (waits for all pets to be updated) - I am passing in the ID of the pet to be updated
// - But how can I create and pass in a dynamic array of functions to achieve this?
// return Q.all([UpdatePets(1), UpdatePets(2), UpdatePets(3), UpdatePets(4), UpdatePets(5), UpdatePets(5)]);

})
.then(function() {
// do something
})
.catch(function (error) {
// error handling
})
.done();

提前致谢。

最佳答案

Q.all不期望函数数组,而是期望数组。使用

Q.try(CreatePolicy)
.then(updateCustomer)
.then(function() {
var arrayOfPromises = [];
var numberOfPets = pets.length;
for (var i=0; i<numberOfPets; i++)
arrayOfPromises[i] = updatePet(pets[i], i); // or something
return Q.all(arrayOfPromises)
})
.then(function() {
// do something
})
.catch(function (error) {
// error handling
});

关于javascript - 在 Jscript 中为 Q.all() 构建动态函数数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19292321/

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