gpt4 book ai didi

javascript - 使用 node.js 和 ES6/ES7 功能逐行读取 CSV 文件

转载 作者:搜寻专家 更新时间:2023-10-31 23:59:58 24 4
gpt4 key购买 nike

在 Python 中逐行读取 CSV 文件(即不将整个文件加载到内存中)很简单:

import csv
for row in csv.reader(open("file.csv")):
print(row[0])

对 node.js 做同样的事情需要使用类似 node-csv 的东西、流和回调。

是否可以使用新的 ES6/ES7 功能(如迭代器、生成器、promises 和异步函数)以看起来更像 Python 代码的方式迭代 CSV 文件的行?

理想情况下,我希望能够写出这样的东西:

for (const row of csvOpen('file.csv')) {
console.log(row[0]);
}

(同样,没有一次将整个文件加载到内存中。)

最佳答案

我不熟悉 node-csv,但听起来应该是使用生成器的迭代器可以做到。只需将其包装在任何异步回调 API 周围即可:

let dummyReader = {
testFile: ["row1", "row2", "row3"],
read: function(cb) {
return Promise.resolve().then(() => cb(this.testFile.shift())).catch(failed);
},
end: function() {
return !this.testFile.length;
}
}

let csvOpen = url => {
let iter = {};
iter[Symbol.iterator] = function* () {
while (!dummyReader.end()) {
yield new Promise(resolve => dummyReader.read(resolve));
}
}
return iter;
};

async function test() {
// The line you wanted:
for (let row of csvOpen('file.csv')) {
console.log(await row);
}
}

test(); // row1, row2, row3

var failed = e => console.log(e.name +": "+ e.message);

请注意,row 是一个 promise ,但足够接近。

粘贴到babel .

关于javascript - 使用 node.js 和 ES6/ES7 功能逐行读取 CSV 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38313873/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com