I am having a hard time running promises sequentially.
var getDelayedString = function(string) {
var deferred = Q.defer();
setTimeout(function() {
document.write(string+" ");
deferred.resolve();
}, 500);
return deferred.promise;
};
var onceUponATime = function() {
var strings = ["Once", "upon", "a", "time"];
var promiseFuncs = [];
strings.forEach(function(str) {
promiseFuncs.push(getDelayedString(str));
});
//return promiseFuncs.reduce(Q.when, Q());
return promiseFuncs.reduce(function (soFar, f) {
return soFar.then(f);
}, Q());
};
getDelayedString("Hello")
.then(function() {
return getDelayedString("world!")
})
.then(function() {
return onceUponATime();
})
.then(function() {
return getDelayedString("there was a guy and then he fell.")
})
.then(function() {
return getDelayedString("The End!")
})
onceUponATime() should sequentially output ["Once", "upon", "a", "time"] but instead they are being output immediately for some reason.
jsFiddle here: http://jsfiddle.net/6Du42/2/
Any idea what I am doing wrong?
You are calling them already here:
You would need to push
function(){ return getDelayedString(str); }
. Btw, instead of using pushing to an array in aneach
loop you rather should usemap
. And actually you don't really need that anyway but canreduce
over thestrings
array directly:Oh, and don't use
document.write
.