我正在使用caolan 的“异步”模块来打开文件名数组(在本例中为模板文件名)。
根据文档,我正在使用async.forEach(),因此一旦所有操作完成,我就可以触发回调。
一个简单的测试用例是:
var async = require('async')
var fs = require('fs')
file_names = ['one','two','three'] // all these files actually exist
async.forEach(file_names,
function(file_name) {
console.log(file_name)
fs.readFile(file_name, function(error, data) {
if ( error) {
console.log('oh no file missing')
return error
} else {
console.log('woo '+file_name+' found')
}
})
}, function(error) {
if ( error) {
console.log('oh no errors!')
} else {
console.log('YAAAAAAY')
}
}
)
输出如下:
one
two
three
woo one found
woo two found
woo three found
即,似乎最终的回调没有触发。我需要做什么才能使最终的回调触发?