nodejs串行无关联

Posted 开始战斗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs串行无关联相关的知识,希望对你有一定的参考价值。

var async = require(‘async‘);

//串行无关联
async.series({
one:function(cb) {
setTimeout(function(){
console.log(‘111111111‘);
cb(‘有错‘, 1);
}, 3000);

},
two:function(cb) {
setTimeout(function(){
console.log(‘222222222‘);
cb(null, 2);
}, 2000);

},
three:function(cb) {
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串行无关联的主要内容,如果未能解决你的问题,请参考以下文章

nodejs并行无关联

NodeJS:串行编写多个 API 调用的好方法

nodejs异步流程控制

nodeJS mysql库如何串行执行查询

Node.js异步库async

async异步流程控制