码迷,mamicode.com
首页 > Web开发 > 详细

nodejs串行无关联

时间:2017-08-27 11:53:59      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:cti   settime   func   关联   console   eth   timeout   set   log   

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串行无关联

标签:cti   settime   func   关联   console   eth   timeout   set   log   

原文地址:http://www.cnblogs.com/yu-hailong/p/7439876.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!