将CSV行转换为Javascript对象

GGM*_*GMU 7 javascript csv node.js

我有一个简单的csv文件

people.csv:

fname, lname, uid, phone, address
John, Doe, 1, 444-555-6666, 34 dead rd
Jane, Doe, 2, 555-444-7777, 24 dead rd
Jimmy, James, 3, 111-222-3333, 60 alive way
Run Code Online (Sandbox Code Playgroud)

我想要做的是获取CSV的每一行,将其转换为JavaScript对象,将它们存储到数组中,然后将数组转换为JSON对象.

server.js:

var http = require('http');
var url  = require('url');
var fs = require('fs');

var args = process.argv;
var type = args[2] || 'text';
var arr = []; 
var bufferString; 

function csvHandler(req, res){
  fs.readFile('people.csv',function (err,data) {

  if (err) {
    return console.log(err);
  }

  //Convert and store csv information into a buffer. 
  bufferString = data.toString(); 

  //Store information for each individual person in an array index. Split it by every newline in the csv file. 
  arr = bufferString.split('\n'); 
  console.log(arr); 

  for (i = 0; i < arr.length; i++) { 
    JSON.stringify(arr[i]); 
  }

  JSON.parse(arr); 
  res.send(arr);  
});
}

//More code ommitted
Run Code Online (Sandbox Code Playgroud)

我的问题是,当我在bufferString上调用.split('\n')方法时,我是否实际上将CSV行转换为Javascript对象,还是有其他方法可以做到这一点?

nan*_*doj 14

通过做这个:

arr = bufferString.split('\n'); 
Run Code Online (Sandbox Code Playgroud)

你将有一个包含所有行作为字符串的数组

["fname, lname, uid, phone, address","John, Doe, 1, 444-555-6666, 34 dead rd",...]
Run Code Online (Sandbox Code Playgroud)

您必须使用逗号再次打破它.split(','),然后将标题分开并将其推送到Javascript对象:

var jsonObj = [];
var headers = arr[0].split(',');
for(var i = 1; i < arr.length; i++) {
  var data = arr[i].split(',');
  var obj = {};
  for(var j = 0; j < data.length; j++) {
     obj[headers[j].trim()] = data[j].trim();
  }
  jsonObj.push(obj);
}
JSON.stringify(jsonObj);
Run Code Online (Sandbox Code Playgroud)

那么你将有一个像这样的对象:

[{"fname":"John",
  "lname":"Doe",
  "uid":"1",
  "phone":"444-555-6666",
  "address":"34 dead rd"
 }, ... }]
Run Code Online (Sandbox Code Playgroud)

看到这个FIDDLE


emi*_*emi 5

使用 ES6/ES7 和一些函数式编程指南:

  • 所有变量都是const(不变性)
  • 使用map/reduce代替while/for
  • 所有功能均为箭头
  • 无依赖关系
// Split data into lines and separate headers from actual data
// using Array spread operator
const [headerLine, ...lines] = data.split('\n');

// Split headers line into an array
// `valueSeparator` may come from some kind of argument
// You may want to transform header strings into something more
// usable, like `camelCase` or `lowercase-space-to-dash`
const valueSeparator = '\t';
const headers = headerLine.split(valueSeparator);

// Create objects from parsing lines
// There will be as much objects as lines
const objects = lines
  .map( (line, index) =>
    line
      // Split line with value separators
      .split(valueSeparator)

      // Reduce values array into an object like: { [header]: value }
      // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce
      .reduce(

        // Reducer callback 
        (object, value, index) => ({
          ...object,
          [ headers[index] ]: value,
        }),

        // Initial value (empty JS object)
        {}
      )
  );

console.log("Objects:", objects);
Run Code Online (Sandbox Code Playgroud)

对于用作,分隔符和引号字符串值的 CSV 文件,您可以使用此版本:

// Split data into lines and separate headers from actual data
// using Array spread operator
const [headerLine, ...lines] = data.split('\n');

// Use common line separator, which parses each line as the contents of a JSON array
const parseLine = (line) => JSON.parse(`[${line}]`);

// Split headers line into an array
const headers = parseLine(headerLine);

// Create objects from parsing lines
// There will be as much objects as lines
const objects = lines
  .map( (line, index) =>

    // Split line with JSON
    parseLine(line)

      // Reduce values array into an object like: { [header]: value } 
      .reduce( 
        (object, value, index) => ({
          ...object,
          [ headers[index] ]: value,
        }),
        {}
      ) 
  );

return objects;
Run Code Online (Sandbox Code Playgroud)

注意:对于大文件,最好使用流、生成器、迭代器等。