多次调用相同的函数并处理组合结果集

时间:2015-03-02 02:39:55

标签: node.js function asynchronous code-duplication

我需要发出几个API请求,然后对组合结果集进行一些处理。在下面的示例中,您可以通过复制相同的请求代码来查看3个请求(到/创建),但我希望能够指定要生成的请求数。例如,我可能希望50次运行相同的API调用。

如何在不重复API调用功能的情况下进行n次调用?

async.parallel([
    function(callback){
        request.post('http://localhost:3000/create')
            .send(conf)
            .end(function (err, res) {
                if (err) {
                    callback(err, null);
                }
                callback(null, res.body.id);
            });
    },
    function(callback){
        request.post('http://localhost:3000/create')
            .send(conf)
            .end(function (err, res) {
                if (err) {
                    callback(err, null);
                }
                callback(null, res.body.id);
            });
    },
    function(callback){
        request.post('http://localhost:3000/api/store/create')
            .send(conf)
            .end(function (err, res) {
                if (err) {
                    callback(err, null);
                }
                callback(null, res.body.id);
            });
    }
],
function(err, results){
    if (err) {
        console.log(err);
    }
 // do stuff with results
});

2 个答案:

答案 0 :(得分:8)

首先,在函数中包装要多次调用的代码:

var doRequest = function (callback) {
    request.post('http://localhost:3000/create')
        .send(conf)
        .end(function (err, res) {
            if (err) {
                callback(err);
            }
            callback(null, res.body.id);
        });
}

然后,使用async.times功能:

async.times(50, function (n, next) {
    doRequest(function (err, result) {
      next(err, result);
    });
}, function (error, results) {
  // do something with your results
}

答案 1 :(得分:0)

在工作负载中需要任务时,为函数创建一个包含引用的数组。然后将它们传递给async.parallel。例如:

var async = require("async");

var slowone = function (callback) {
        setTimeout(function () {
                callback(null, 1);
        }, 1000);
};

async.parallel(
        dd(slowone, 100), 
        function (err, r) {
                console.log(JSON.stringify(r));
        }
);

// Returns an array with count instances of value.
function dd(value, count) {
        var result = [];

        for (var i=0; i<count; i++) {
                result.push(value);
        }

        return result;
}

再次注意,尽管有很多引用,但只有一个慢速运行的实例。