当循环内的所有回调都完成时调用一个函数

时间:2017-01-27 00:02:43

标签: javascript node.js stream fs line-by-line

我有一个简单的脚本,使用readLine api处理大型主机名文件,它逐行读取,对于每个主机名,我调用异步dns函数来获取与主机名相关的IP地址。

这是我的代码:

const readline = require('readline')
    , fs = require('fs')
    , dns = require('dns');

var res = [];

const rl = readline.createInterface({
    input: fs.createReadStream('hostnames.csv')
});

rl.on('line', function (line) {
    var parts = line.split(',');
    dns.resolve4(parts[1], function (error, ips) {
        if (error) return console.log('dns__error: ' + error);
        res.push({ id:parts[0], hostname:parts[1], ips:ips });
    });

});

rl.on('close', function () {
    console.log(res.length);
    fs.writeFile('hostnames.json', JSON.stringify(res), function (error) {
        if (error) console.log('fs__writeFile__error: ' + error);
    });
});

问题是当发出close事件时res数组不包含所有结果,如果执行所有dns请求,我该如何运行回调?

由于

0 个答案:

没有答案