gpt4 book ai didi

node.js - TypeError : csv. fromPath 不是函数

转载 作者:行者123 更新时间:2023-12-04 14:45:22 28 4
gpt4 key购买 nike

我正在使用 快速 csv 读取我的 csv 文件,但它给了我这样的错误

UnhandledPromiseRejectionWarning: TypeError: csv.fromPath is not a function



这是我的代码:
const fileRows = [];
console.log("req.file.path",req.file.path)
// open uploaded file
csv.fromPath(req.file.path)
.on("data", function (data) {
fileRows.push(data); // push each row
})
.on("end", function () {
console.log(fileRows);
//fs.unlinkSync(req.file.path); // remove temp file

const validationError = validateCsvData(fileRows);
if (validationError) {
return res.status(403).json({ error: validationError });
}
//else process "fileRows" and respond
return res.json({ message: "valid csv" })
})

最佳答案

对于 'fast-csv' 版本 >= 3.0.0 :- fromPath 已弃用而支持 parseFile,即
csv.fromPath() 改为 csv.parseFile()

更多详情请访问:https://github.com/C2FO/fast-csv/blob/master/History.md

关于node.js - TypeError : csv. fromPath 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60237832/

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