由于某种原因,当我使用 async.parallel() 时,永远不会打印 'yyyyyyyyy' 字符串,如下所示。为什么是这样?我认为一旦调用了其他两个函数,就会调用最后一个函数。
var async = require('async');
async.parallel([
function() {
console.log('xxxxxxxxxxx');
},
function() {
console.log('ccccccccccc');
}
], function(err, results){
console.log('yyyyyyyyy');
});