asyncjs
のウォーターフォール関数のチェーンから関数をジャンプしたいnodejs
。
私のコードは次のようになります:
async.waterfall([
function(next){
if(myBool){
next(null);
}else{
// Bypass the 2nd function
}
},
// I want to bypass this method if myBool is false in the 1st function
function(next){
},
// Always called
function(next){
}
]);
あなたは置くことなくこれを行うための適切な方法を知っていますか:
if(!myBool){
return next();
}
バイパスしたい関数です。
ありがとう !