如何解决解析 res.text Node express
我正在从基于云的存储中检索 csv 文件作为 res.text 并需要将其转换为 json。
我想知道是否应该在 fetchUrl 的返回中进行解析,还是应该在路由中进行解析 (res.send)?
const fetchUrl = async () => {
const URL_1 = 'https://file.csv'
const res = await fetch(URL_1)
return res.text()
}
router.get('/data',async (req,res,next) => {
try {
const getAllData = await fetchUrl();
console.log(getAllData,'fetching?');
res.send(getAllData);
} catch (err) {
next(err);
//res.send({ message: err })
// res.status(404).send(err)
console.log(err)
}
})
解决方法
我使用了一个自定义函数,在第二个 .then 中将其转换为 json。这样我就不必在每次调用端点时获取数据,因为数据不会改变。 像这样:
let getAllData
fetch('https://file.csv')
.then(res => res.text())
.then(data => {
getAllData = csvToJSON(data)
getAllData.forEach((item) => {
item.startTime = new Date(item.startTime)
})
})
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。