我需要在循环内执行异步函数(使用不同的参数)。任何想法如何使用Node.js中的Q模块完成它。 以下是一个例子: -
function addAsync(a, b) {
var deferred = q.defer();
// Wait 2 seconds and then add a + b
setTimeout(function() {
deferred.resolve(a + b);
}, 2000);
return deferred.promise;
}
Q.all可以使用(),但是并行运行。由于项目要求,我基本上需要按顺序执行它们。
答案 0 :(得分:4)
答案 1 :(得分:1)
你有很多选择,但这应该让你感动:
parameters.reduce(function (results, parameters) {
return results.then(function () {
return addAsync(parameters[0], parameters[1])
.then(function (result) {
results.push(result);
return results;
})
});
}, Q([]))
.then(function (results) {
// ...
})
.done()
我有一个更有趣的解决方案来自Q-IO https://github.com/kriskowal/q-io/pull/57
Reader(parameters)
.map(function (parameters) {
return addAsync(parameters[0], parameters[1])
}, null, 1)
.all()
.then(function (results) {
// ...
})
1
是并行性限制器。