nodejs 异步流程控制
nodejs 异步流程控制 async.parallel怎么传入参数?
7 回复
有人遇到过这个问题吗,你们有什么办法从外部传入一个参数到 async.parallel中?
var param='123';
async.parallel([
function(cb1){
doSomething(param,cb1);
}
],function(error,result){
//....
});
三两句话我甚至不知道问题在哪
我觉得你问题没描述清楚
@imhered 谢谢你,按你的方法,问题解决了
谢谢大家的参与!