102

如何更新 json 文件中的值并通过 node.js 保存?我有文件内容:

var file_content = fs.readFileSync(filename);
var content = JSON.parse(file_content);
var val1 = content.val1;

现在我想更改的值val1并将其保存到文件中。

4

7 回答 7

163

异步执行此操作非常容易。如果您担心阻塞线程(可能),它特别有用。否则,我会建议彼得里昂的回答

const fs = require('fs');
const fileName = './file.json';
const file = require(fileName);
    
file.key = "new value";
    
fs.writeFile(fileName, JSON.stringify(file), function writeJSON(err) {
  if (err) return console.log(err);
  console.log(JSON.stringify(file));
  console.log('writing to ' + fileName);
});

需要注意的是,json 是在一行中写入文件而不是美化的。前任:

{
  "key": "value"
}

将会...

{"key": "value"}

为避免这种情况,只需将这两个额外的参数添加到JSON.stringify

JSON.stringify(file, null, 2)

null- 表示替换函数。(在这种情况下,我们不想改变流程)

2- 表示要缩进的空格。

于 2015-01-27T16:23:26.153 回答
53
//change the value in the in-memory object
content.val1 = 42;
//Serialize as JSON and Write it to a file
fs.writeFileSync(filename, JSON.stringify(content));
于 2012-05-21T13:55:18.730 回答
6
// read file and make object
let content = JSON.parse(fs.readFileSync('file.json', 'utf8'));
// edit or add property
content.expiry_date = 999999999999;
//write file
fs.writeFileSync('file.json', JSON.stringify(content));
于 2019-12-12T09:24:24.030 回答
5

除了上一个答案添加文件路径目录进行写操作

 fs.writeFile(path.join(__dirname,jsonPath), JSON.stringify(newFileData), function (err) {}
于 2019-10-19T20:15:17.413 回答
2

任务完成后保存数据

fs.readFile("./sample.json", 'utf8', function readFileCallback(err, data) {
        if (err) {
          console.log(err);
        } else {
          fs.writeFile("./sample.json", JSON.stringify(result), 'utf8', err => {
            if (err) throw err;
            console.log('File has been saved!');
          });
        }
      });
于 2020-11-13T19:34:03.850 回答
2

对于那些希望将项目添加到 json 集合的人

function save(item, path = './collection.json'){
    if (!fs.existsSync(path)) {
        fs.writeFile(path, JSON.stringify([item]));
    } else {
        var data = fs.readFileSync(path, 'utf8');  
        var list = (data.length) ? JSON.parse(data): [];
        if (list instanceof Array) list.push(item)
        else list = [item]  
        fs.writeFileSync(path, JSON.stringify(list));
    }
}
于 2020-09-08T09:46:34.573 回答
2

我强烈建议不要使用同步(阻塞)函数,因为它们包含其他并发操作。相反,使用异步fs.promises

const fs = require('fs').promises

const setValue = (fn, value) => 
  fs.readFile(fn)
    .then(body => JSON.parse(body))
    .then(json => {
      // manipulate your data here
      json.value = value
      return json
    })
    .then(json => JSON.stringify(json))
    .then(body => fs.writeFile(fn, body))
    .catch(error => console.warn(error))

记住setValue返回一个未决的承诺,你需要使用.then 函数,或者在异步函数中使用await 操作符

// await operator
await setValue('temp.json', 1)           // save "value": 1
await setValue('temp.json', 2)           // then "value": 2
await setValue('temp.json', 3)           // then "value": 3

// then-sequence
setValue('temp.json', 1)                 // save "value": 1
  .then(() => setValue('temp.json', 2))  // then save "value": 2
  .then(() => setValue('temp.json', 3))  // then save "value": 3
于 2020-09-27T23:06:05.290 回答