如何使用json2csv nodejs模块将JSON对象解析为CSV文件

时间:2013-12-16 20:58:08

标签: json node.js csv

我目前正在学习如何使用json2csv节点模块将JSON对象解析为CSV文件。之前从未使用过JSON,所以这对我来说都是新的。

我的JSON对象的格式如下:

{
 "car":
      {
          "name":["Audi"],
          "price":["40000"],
          "color":["blue"]
      }
}

输出CSV文件的格式如下:

"car","name","price","color"
{"name":["Audi"],"price":["40000"],"color":["blue"]},,,

我怎样才能让CSV输出看起来像这样呢?

name, price, color
"Audi",40000,"blue"

我知道我可以直接调用字段来获取常规JSON数据,但我不明白它在JSON对象下的工作方式。

7 个答案:

答案 0 :(得分:5)

json2csv仅支持平面结构,其中字段是json根的直接子节点。

如果您想更改它,请考虑克隆代码并执行以下操作:

// createColumnContent function changed from original code
var createColumnContent = function(params, str, callback) {
  params.data.forEach(function(data_element) {
    //if null or empty object do nothing
    if (data_element && Object.getOwnPropertyNames(data_element).length > 0) {
      var line = '';
      var eol = os.EOL || '\n';
      params.fields.forEach(function(field_element) {
        // here, instead of direct child, getByPath support multiple subnodes levels
        line += getByPath(data_element, field_element.split('.'), 0) + params.del;
      });
      //remove last delimeter
      line = line.substring(0, line.length - 1);
      line = line.replace(/\\"/g, '""');
      str += eol + line;
    }
  });
  callback(str);
};

var getByPath = function(data_element, path, position) {
  if (data_element.hasOwnProperty(path[position])) {
    if (position === path.length - 1) {
      return JSON.stringify(data_element[path[position]]);
    }
    else {
      return getByPath(data_element[path[position]], path, position + 1)
    }
  }
  else {
    return '';
  }
}

用法:

json2csv({data: json, fields: ['car.name.0', 'car.price.0', 'car.color.0']}, function(err, csv) {
  if (err) console.log(err);
  fs.writeFile('file.csv', csv, function(err) {
    if (err) throw err;
    console.log('file saved');
  });
});

输出文件内容:

"car.name.0","car.price.0","car.color.0"
"Audi","40000","blue"

作为旁注,要克隆并使用您自己的版本:

git clone https://github.com/zeMirco/json2csv.git

添加更改...

使用更改版本:

npm install /local/path/to/repo

答案 1 :(得分:2)

输入格式不正确,应该是json2csv document

var json2csv = require('json2csv');

var json = [
  {
    "car": "Audi",
    "price": 40000,
    "color": "blue"
  }, {
    "car": "BMW",
    "price": 35000,
    "color": "black"
  }, {
    "car": "Porsche",
    "price": 60000,
    "color": "green"
  }
];

json2csv({data: json, fields: ['car', 'price', 'color']}, function(err, csv) {
  if (err) console.log(err);
  fs.writeFile('file.csv', csv, function(err) {
    if (err) throw err;
    console.log('file saved');
  });
});

“file.csv”的内容应为

car,       price, color
"Audi",    40000, "blue"
"BMW",     35000, "black"
"Porsche", 60000, "green"

答案 2 :(得分:2)

您还可以指示json2csv在JSON对象中使用子数组,方法是在json2csv的数据部分中使用JSON对象后使用.<name>进行寻址。

在您的情况下,这可能类似于:

&#13;
&#13;
const json2csv = require('json2csv');
const fs = require('fs');

var json = {
 "car":[
  {
   "name":"Audi",
   "price":"40000",
   "color":"blue"
  }
 ]
};

json2csv({data: json.car, fields: ['name', 'price', 'color']}, function(err, csv) {
  if (err) console.log(err);
  fs.writeFile('cars.csv', csv, function(err) {
    if (err) throw err;
    console.log('cars file saved');
  });
});
&#13;
&#13;
&#13;

答案 3 :(得分:1)

我能够使用 parse 方法解决这个问题,并将我的 json 数据格式化为一个对象数组。

const { parse, Parser } = require('json2csv');
const data = [
     {key: value, key2: value2 },
     {key: value3, key2: value4 }
     ];
const fields = ['key', 'key2'];
const csv = parse(data, { fields });

然后使用 csv 变量执行您需要的操作。

答案 4 :(得分:0)

const { Parser } = require('json2csv');

let myCars = {
    "car":
    {
        "name": ["Audi"],
        "price": ["40000"],
        "color": ["blue"]
    }
};

let fields = ["car.name", "car.price", "car.color"];

const parser = new Parser({
    fields,
    unwind: ["car.name", "car.price", "car.color"]
});

const csv = parser.parse(myCars);

console.log('output',csv);

将输出到控制台

enter image description here

答案 5 :(得分:0)

我对你们不了解,但是我喜欢小型软件包,它们可以按预期工作,而无需进行大量额外配置,请尝试使用 jsonexport ,它与对象,数组,..都非常有效。而且速度快!

安装

npm i --save jsonexport

用法

const jsonexport = require('jsonexport');
const fs = require('fs');

jsonexport({
 "car":[
  {
   "name":"Audi",
   "price":"40000",
   "color":"blue"
  }
 ]
}, function(err, csv) {
  if (err) return console.error(err);
  fs.writeFile('cars.csv', csv, function(err) {
    if (err) return console.error(err);
    console.log('cars.csv saved');
  });
});

https://github.com/kauegimenes/jsonexport

答案 6 :(得分:-1)

结帐Underscore.js pluck method - 如果您将_.pluck(json, 'car')传递给json2csv的data而不是原来的json,那么您应该得到您想要的内容。