gpt4 book ai didi

javascript - 在 Meteor.js 中导入/读取 CSV

转载 作者:行者123 更新时间:2023-11-28 18:57:19 25 4
gpt4 key购买 nike

如何从 /private 目录中的文件系统路径将 CSV 文件读入 Meteor 应用程序?

找到fast-csv packaged for Meteor但是如何创建createReadStream来输入fast-csv包。

最佳答案

使用 Oskar 的建议 papa-parse ,你可以这样做:

$ meteor add harrison:papa-parse

然后在您的服务器上:

// read your file as a csv string (assuming it's in the private dir)
var csv = Assets.getText('path/to/your.csv');
// convert the csv to an array of arrays
var rows = Papa.parse(csv).data;
// show the first row
console.log(rows[0]);

推荐阅读:

此外,如果您提前将数据存储在 private 目录中,我建议将其转换为无需解析即可读取的格式(即使用 JSON 而不是 CSV) .

关于javascript - 在 Meteor.js 中导入/读取 CSV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33351630/

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