Pomelo async waterfall

1578 단어 pomeloasync
Async의waterfall은 모든 비동기 함수를 직렬로 연결하여 앞의 동작이 실행되어야만 뒤의 동작을 수행할 수 있습니다.코드는 다음과 같습니다.
var async = require('async');

async.waterfall([function(cb) {
        cb(null, 'hello');
    }, function(param1, cb) {
        console.log(param1);
        cb(null, 'hello', 'world');
    }, function(param1, param2, cb) {
        console.log(param1, ' ', param2);
        cb(null, 'result');
    }], function(err, result) {
        console.log(result);
});

출력:
hello
hello world
result

코드를 통해 각 비동기 함수 사이는 cb(callback)를 통해 함수 집행 결과를 다음 비동기 함수에 전달하는 것을 분명히 볼 수 있다.여기서 주의해야 할 것은 cb의 첫 번째 인자입니다. 만약 cb의 첫 번째 인자가null이 아니라 오류가 있다면, 이 비동기 함수 이후의 모든 비동기 함수는 건너뛰고function(err,result) {}을 직접 실행합니다.
코드를 다음과 같이 수정합니다: var async = require ('async').
async.waterfall([function(cb) {
        cb('some error', 'hello');
    }, function(param1, cb) {
        console.log(param1, ' ', 'from first async function');
        cb(null, 'hello', 'world');
    }, function(param1, param2, cb) {
        console.log(param1, ' ', param2, ' ', 'from second async function');
        cb(null, 'result');
    }], function(err, result) {
        if(err){
            console.log(err);
        }
        console.log(result, ' ', 'from the end function');
});

출력:
some error
hello from the end function

각 비동기 함수 중의 cb 함수 호출 파라미터를 조정하여 결과를 관찰할 수 있다.

좋은 웹페이지 즐겨찾기