将对象添加到json文件 - Node.js

san*_*zer 3 javascript json node.js jsonobject

我正在尝试将对象添加到Node.js中的一个非常大的JSON文件中(但仅当id与现有对象不匹配时).到目前为止我所拥有的:

示例JSON文件:

[
  {
    id:123,
    text: "some text"
  },
  {
    id:223,
    text: "some other text"
  }
]
Run Code Online (Sandbox Code Playgroud)

app.js

var fs = require('fs');     
var jf = require('jsonfile')
var util = require('util')    
var file = 'example.json'

// Example new object
var newThing = {
  id: 324,
  text: 'more text'
}

// Read the file
jf.readFile(file, function(err, obj) {
  // Loop through all the objects in the array
  for (i=0;i < obj.length; i++) {
    // Check each id against the newThing
    if (obj[i].id !== newThing.id) {
      found = false;
      console.log('thing ' + obj[i].id + ' is different. keep going.');
    }else if (obj[i].id == newThing.id){
      found = true;
      console.log('found it. stopping.');
      break;
    }
  }
  // if we can't find it, append it to the file
  if(!found){
    console.log('could not find it so adding it...');
    fs.appendFile(file, ', ' + JSON.stringify(newTweet) + ']', function (err) {
      if (err) throw err;
      console.log('done!');
    });
  }
})
Run Code Online (Sandbox Code Playgroud)

非常接近我想要的.唯一的问题是]JSON文件末尾的尾随字符.有没有办法使用文件系统API或其他东西删除它?或者有更简单的方法来完全按照我的意愿行事吗?

Bra*_*rad 13

处理此问题的正确方法是解析JSON文件,修改对象并再次输出.

var obj = require('file.json');
obj.newThing = 'thing!';
fs.writeFile('file.json', JSON.stringify(obj), function (err) {
  console.log(err);
});
Run Code Online (Sandbox Code Playgroud)