我想使用nodejs逐行读取文件,然后在完成时将返回的结果作为json字符串获取。我试图这样做,但最后console.log打印undefined而不是列表。我得到了列表和承诺的结束但是如何将它返回到main.js中的调用函数?
我有我的main.js文件:
var fct = require('./romlist-parser');
console.log(fct.myfunction());
并且romlist-parser.js具有以下内容:
var fs = require('fs');
var readline = require('readline');
exports.myfunction = function() {
var promise = new Promise(function(resolve,reject) {
var rd = readline.createInterface({
input: fs.createReadStream('Atari 2600.txt'),
console: false
});
var games = [];
rd.on('line', function(line) {
var arr = line.split(";");
games.push({name:arr[0], title:arr[1]});
});
rd.on('close', function() {
var json = JSON.stringify(games);
resolve(games);
});
});
promise.then((resolveResult) => {
console.log(resolveResult);
return resolveResult;
});
};
答案 0 :(得分:1)
试试这个:
exports.myfunction = function() {
var promise = new Promise(function(resolve,reject) {
var games = [];
var rl = readline('./Atari 2600.txt'); // provide correct file path
rl.on('line', function (line, lineCount, byteCount) {
// console.log(lineCount, line, byteCount);
var arr = line.split(";");
games.push({name:arr[0], title:arr[1]});
})
.on('close', function() {
var json = JSON.stringify(games);
resolve(games); // resolve(json); may be??
})
.on('error', function (e) {
console.log("error", e);
// something went wrong
});
});
promise.then((resolveResult) => {
console.log(resolveResult);
return resolveResult;
});
};
P.S。此代码可以进一步改进,但为了简单起见,您的理解答案仅限于帖子中发布的样式/代码。此外,它可以改变风格。
答案 1 :(得分:0)
我将设置和累积结果的变量移动到封闭范围中,然后,最重要的是,从创建它的函数返回promise。所以......
exports.myfunction = function(filename) {
let games = [];
let rd = readline.createInterface({
input: fs.createReadStream(filename),
console: false
});
return new Promise(function(resolve,reject) {
rd.on('line', function(line) {
var arr = line.split(";");
games.push({name:arr[0], title:arr[1]});
});
rd.on('close', function() {
var json = JSON.stringify(games);
resolve(games);
});
// on 'error' call reject(error)
});
};
// then elsewhere
const fct = require('./romlist-parser');
function someFunction() {
let promise = fct.myfunction('Atari 2600.txt');
return promise.then(result => {
console.log(result);
return resolveResult
});
}
答案 2 :(得分:0)
我还需要一种处理大文件行的好方法。
所以我做到了。您可以轻松地在文件,流,字符串,缓冲区中逐行进行迭代
它还支持反向模式!
请尝试,如果您喜欢,请给我加星!
https://github.com/sharpart555/nexline
const nl = nexline({
input: fs.openSync(path_to_file, 'r'), // input can be file, stream, string and buffer
});
console.log(await nl.next()); // 'foo'
console.log(await nl.next()); // 'bar'
console.log(await nl.next()); // 'baz'
console.log(await nl.next()); // null, If all data is read, then return null