首页 > 解决方案 > 为什么 fast-csv 不将数据存储在 NodeJS 中?

问题描述

您好,我只想在节点中存储一列 CSV 以操作数组中的数据,我正在尝试读取并存储它,但它不起作用发生了什么?这是我的代码

let stream = fs.createReadStream("Supliers.csv");

let csvStream = csv({headers: true})
.on("data", function(data){
     /*data.forEach(x => {
      console.log(x)
     })*/

     Final.push(data)
})
.on("end", function(){
     console.log(Final);//[THE COMPLETE DATA TOTALLY OK]
});

stream.pipe(csvStream);

console.log(Final)// []

我不明白:(帮助

标签: node.jsfilecsv

解决方案


根据您的代码,我添加了注释。

let stream = fs.createReadStream("Supliers.csv");

let csvStream = csv({headers: true}).on("data", function(data){
     // This is inside a function that gets slightly later, in the 
     // next tick of the event loop.  I.e. it's called after
     // the 'console.log(Final)' statement.
     Final.push(data)
})
.on("end", function(){
     // You can do your processing in this function
     console.log(Final);
});

stream.pipe(csvStream);

// This gets called before the '.on("data"...' function.
console.log(Final)

// To prove that this works (***but don't use this in your code***)
// the following should work too.
setTimeout(() => console.log(Final), 100);

我推荐阅读 Node.js 事件循环:https ://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/


推荐阅读