Bu nedenle, bilinmeyen uzunlukta birden fazla söz zincirim olduğu bir durum var. Tüm ZİNCİRLER işlendiğinde bazı eylemlerin çalışmasını istiyorum. Bu mümkün mü? İşte bir örnek:
app.controller('MainCtrl', function($scope, $q, $timeout) {
var one = $q.defer();
var two = $q.defer();
var three = $q.defer();
var all = $q.all([one.promise, two.promise, three.promise]);
all.then(allSuccess);
function success(data) {
console.log(data);
return data + "Chained";
}
function allSuccess(){
console.log("ALL PROMISES RESOLVED")
}
one.promise.then(success).then(success);
two.promise.then(success);
three.promise.then(success).then(success).then(success);
$timeout(function () {
one.resolve("one done");
}, Math.random() * 1000);
$timeout(function () {
two.resolve("two done");
}, Math.random() * 1000);
$timeout(function () {
three.resolve("three done");
}, Math.random() * 1000);
});
Bu örnekte, $q.all()
rastgele bir zamanda çözülecek olan bir, iki ve üç sözler için bir belirledim . Sonra bir ve üçün sonuna sözler ekliyorum. İstediğim all
bütün zincirleri çözüldüğünde çözmek için. İşte bu kodu çalıştırdığımda çıktı:
one done
one doneChained
two done
three done
ALL PROMISES RESOLVED
three doneChained
three doneChainedChained
Zincirlerin çözülmesini beklemenin bir yolu var mı?