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

Add object to json file - Node.js

我正在尝试将对象添加到 Node.js 中的一个非常大的 JSON 文件(但前提是 ID 与现有对象不匹配)。我目前拥有的:

示例JSON 文件:

[
  {
    id:123,
    text: "some text"
  },
  {
    id:223,
    text: "some other text"
  }
]

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!');
    });
  }
})

非常接近我想要的。唯一的问题是 JSON 文件末尾的 ] 字符。有没有办法使用文件系统 API 或其他方式删除它?还是有更简单的方法来做我想做的事?

正确的处理方法是解析JSON文件,修改对象,再输出。

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

对于我的项目,我最终使用了这段代码。

function appendJsonToFile(file, entry, key, callback){

        if(!_.isObject(entry)){
            return callback('Type object expected for param entry', null);
        }

        fs.readFile(file, 'utf8', function(err, data){

            if(err){
                return callback(err, null);
            }

            var json;

            try{
                json = JSON.parse(data);
            } catch(e){
                return callback(e, null);
            }

            if(!_.isArray(json[key])){
                return callback('Key "' + key + '" does not point to an array', null);
            }

            json[key].push(entry);

            fs.writeFile(file, JSON.stringify(json), function (err) {

                if(err){
                    return callback(err, null);
                }

                callback(null, file);
            });
        });
    }