我的要求如下:
我有 3 个大文件 big_file_1、big_file_2 和 big_file_3。我想异步读取这 3 个大文件,只有在所有文件的读取完成后才处理我的其余代码。
fs.readFile('big_file_1', function (err, data) {
if (err) throw err;
content_1 = data;
});
fs.readFile('big_file_2', function (err, data) {
if (err) throw err;
content_2 = data;
});
fs.readFile('big_file_3', function (err, data) {
if (err) throw err;
content_3 = data;
});
// Do something with content_1, content_2 and content_3
如何在 Node.JS 中实现这一点?