从CSV文件中的JSON输出对象

时间:2018-11-09 10:26:52

标签: javascript node.js json csv

我试图找到一种输出对象json并将其保存在csv文件中的方法,我试图在'loop for'中使用loop'for in',但问题是属性和长度对象不同

data json:

[ 
{"name":"Googlebot","htmlimports":true,"objectfit":true,"geolocation":true,"histor":true,"es5object":true,"strictmode":true,"es5string":true}, 

{"name":"Bing","htmlimports":false,"geolocation":true,"history":true,"es5object":true,"strictmode":true,"es5string":true}, 

{"name":"iE","htmlimports":true,"svgclippaths":true,"geolocation":true,"history":true,"ie8compat":false,"strictmode":true,"es5string":true,"es5syntax":true} ]


const stringify = require('csv-stringify');
const fs = require('fs')

fs.readFile('./googleBot.json','utf8', (err, dataa) => {
  if (err) throw err;
  const dates  = JSON.parse(dataa)

  let data = [];
  let columns = {
    value: 'value',
    Googlebot: 'Googlebot',
    Bing: 'Bing',
    iE: 'iE',
  };

  for(i = 0; i < dates.length; i++){
    for (var prop in dates) {
      data.push([prop, `${dates[0][prop]}`, `${dates[1][prop]}`, `${dates[2][prop]}`]);
    }
  }


  stringify(data, { header: true, columns: columns }, (err, output) => {
    if (err) throw err;
    fs.writeFile('my.csv', output, (err) => {
      if (err) throw err;
      console.log('my.csv saved.');
    });
  });
});

预期结果:

enter image description here

1 个答案:

答案 0 :(得分:0)

由于您的对象可以包含不同的属性,因此您首先需要收集所有可能的属性的列表。

您可以创建一个临时数组来保存属性,然后遍历对象并在该数组中推送属性(如果属性尚不存在的话)。

var allProps = [];

for (var i = 0; i < dates.length; i++) {
  for (var prop in dates[i]) {
    if (!allProps.includes(prop)) {
      allProps.push(prop);
    }
  }
}

在那之后,只需要正确地构建行即可。

for (var i = 0; i < allProps.length; i++) {
  var prop = allProps[i];
  if (prop == 'name') continue;  //skip the name property, it's alrady in the columns

  var row = []
  row.push(prop);  //first entry in the row is the property name

  for (var k = 0; k < dates.length; k++) {
    row.push(`${dates[k][prop]}`);
  }

  data.push(row);
}

查看此代码,运行here

输出:

value,Googlebot,Bing,iE
htmlimports,true,false,true
objectfit,true,undefined,undefined
geolocation,true,true,true
histor,true,undefined,undefined
es5object,true,true,undefined
strictmode,true,true,true
es5string,true,true,true
history,undefined,true,true
svgclippaths,undefined,undefined,true
ie8compat,undefined,undefined,false
es5syntax,undefined,undefined,true