async.auto流程控制问题
async.auto({
getAll: function (callback) {
console.log('all');
$http.get(url1).success(function{
do something...
})
},
getSendAll: function (callback) {
console.log('sendAll');
$http.get(url2).success(function{
do something...
})
},
getRain: ['getAll', 'getSendAll', function(callback,results) {
console.log('rain');
$http.get(url3).success(function{
do something...
})
}],
getThree: ['getAll', 'getSendAll', function(callback) {
console.log('three');
$http.get(url4).success(function{
do something...
})
}],
getOneData0: ['getAll', 'getSendAll', function(callback) {
console.log('data0');
$http.get(url5).success(function{
do something...
})
}],
getOneData1: ['getAll', 'getSendAll', function(callback) {
console.log('data1');
$http.get(url6).success(function{
do something...
})
}],
getOneData2: ['getAll', 'getSendAll', function(callback) {
console.log('data2');
$http.get(url7).success(function{
do something...
})
}],
resultData: ['getRain', 'getThree','getOneData0','getOneData1','getOneData2', function(callback) {
console.log('resultData');
}],**// 这个resultData 方法也不会执行**
}, function(err, results) {
console.log('come in');**//这个方法为什么不会执行。**
});
下午刚刚看了下文档,不知道哪里没理解清楚,请大家帮忙看看是什么原因造成的
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论