是否可以将其他参数或参数传递给async.EachSeries
方法签名是:EachSeries(arr, iterator, callback)
我有一种方法可以将电子邮件收件人与邮件模板异步合并
var mergeTemplate = function(template,recipients,callback){
async.EachSeries(recipients,processMails,callback);
};
var processMails = function(template,singleRecipient,callback){
//...this would contain an async.waterfall of tasks to process the mail
async.waterfall(tasks,callback);
}
我需要的是在不使用“脏”全局变量的情况下通过模板...这可能吗?如果可以,如何?
谢谢