nodejs串行有关联
Posted 开始战斗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs串行有关联相关的知识,希望对你有一定的参考价值。
var async = require(‘async‘);
//串行无关联series
//串行有关联waterfall
async.waterfall([
function(cb) {
setTimeout(function(){
console.log(‘111111111‘);
cb(null, 1);
}, 3000);
},
function(param,cb) {
console.log(‘one传来:‘+param);
setTimeout(function(){
console.log(‘222222222‘);
cb(null, 2);
}, 2000);
},
function(param,cb) {
console.log(‘two传来:‘+param);
setTimeout(function(){
console.log(‘333333333‘);
cb(null, 3);
}, 1000);
}
],
function(err, value) {
if(err){
console.log(err);
}
// do somethig with the err or values v1/v2/v3
console.log(value);
}
);
以上是关于nodejs串行有关联的主要内容,如果未能解决你的问题,请参考以下文章