有没有办法将信息传递给 async.js 并行调用,所以我不必使用全局变量?
async.parallel([
function(callback){
setTimeout(function(){
callback(null, 'one');
}, 200);
},
function(callback){
setTimeout(function(){
callback(null, 'two');
}, 100);
},
],
// optional callback
function(err, results){
console.log(info)
// the results array will equal ['one','two'] even though
// the second function had a shorter timeout.
});
我希望最终回调知道“信息”的值。谢谢你的帮助!