if 또는 else가 실행 가능할 때 함수를 구현했습니다. 내 코드에 더 잘 보이게하기 위해 async.series
을 사용하고 싶었습니다.if 문 안에서 비동기식 시리즈를 사용할 수 있습니까?
if(payload.fb_id) {
//all the statements here should execute
// async.series ([...])
} else {
if(payload.password){
// all the statements here should execute
//async.series ([...])
}
}
위에서 언급 한 if 문 안에 async.series
을 사용할 수 있습니까?
을 .try 동일한 코드 (DRY 원칙을) 반복하지. – James
@srujana 가능합니다. – amanpurohit