是否有npm模块将制表符分隔文件转换为JSON对象,以便我可以通过某些属性查找数据。
示例:该文件如下所示,
name sex age
A M 20
B F 30
C M 40
D F 50
JSON
{[{
name: A,
sex: M,
age: 20
}, {
name: B,
sex: F,
age: 30
},........]}
答案 0 :(得分:2)
有时我更喜欢不使用节点模块,这样我可以在不进行任何设置的情况下运行这些脚本。...
IE。 nodejs ./convert-to-csv.js
这里是一个nodejs脚本,以防您选择不使用节点模块。
var fs = require("fs");
fs.readFile("./birthrate_poverty.txt","utf8", function(err, data){
var rows = data.split("\n");
var json = [];
var keys = [];
rows.forEach((value, index)=>{
if(index < 1){// get the keys from the first row in the tab space file
keys = value.split("\t");
}else {// put the values from the following rows into object literals
values = value.split("\t");
json[index-1] = values.map((value, index) => {
return {
[keys[index]]: value
}
}).reduce((currentValue, previousValue) => {
return {
...currentValue,
...previousValue
}
});
}
})
// convert array of objects into json str, and then write it back out to a file
let jsonStr = JSON.stringify(json);
fs.writeFileSync("./birthrate_poverty.json", jsonStr, {encoding: "utf8"})
});
答案 1 :(得分:1)
是的,csvtojson和分隔符不仅可以是逗号。 例如:
const csvFilePath='FILE'
const csv=require('csvtojson')
csv({delimiter:"\t"})
.fromFile(csvFilePath)
.on('json',(jsonObj)=>{
console.log(jsonObj);
})
.on('done',(error)=>{
console.log('end');
})