6

可変数の関数を 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();

前もって感謝します。

4

1 に答える 1

7

Q.all関数の配列ではなく、promise の配列が必要です。使用する

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
});
于 2013-10-10T11:51:21.553 に答える