最近努力理解promise遇到了一个问题: 对于如下带有分支的异步操作
asyncFunc1(arg,function(e,res){
if(res){
asycnFunc2(arg,function(e,res){
cb(null,res);
})
}else{
cb(null,false);
}
});
转换成promise的格式应该怎么写呢? 感谢
最近努力理解promise遇到了一个问题: 对于如下带有分支的异步操作
asyncFunc1(arg,function(e,res){
if(res){
asycnFunc2(arg,function(e,res){
cb(null,res);
})
}else{
cb(null,false);
}
});
转换成promise的格式应该怎么写呢? 感谢