只是把它扔在那里,以防有人有任何建议!
我正在尝试使用 将 CSV 文件转换为 JSON,papaparse
这似乎是最好的前端解决方案,尽管我正在考虑改用 node。
目前,我在 React 应用程序中使用 papaparse,如下所示:
parse(url, { //remote url, public CSV file
download: true,
header: true,
// delimiter: ',',
skipEmptyLines: true,
complete: (results, file) => {
console.log(results)
if (results.errors && results.errors.length) {
console.log(errors)
}
}})
... //etc
在本地运行反应应用程序时,解析函数返回完成,我收到结果。没有错误。
但是,在生产构建中,在运行 yarn build 之后,解析函数突然不再运行。我从来没有收到任何东西。它只是在没有任何线索的情况下无法工作。
有什么我可以尝试的吗?
非常感谢任何帮助!