我正在尝试使用fs.writeFileSync('notes.json',originalNoteString)写入文件。当我第一次运行该程序时,它是追加的,但是当我第二次运行该程序时,它是不会追加的。任何人都可以帮助我这里发生的事情。
const fs = require('fs');
let orginalNote = {
title: 'sometitle',
body: 'somebody'
}
let originalNoteString = JSON.stringify(orginalNote);
fs.writeFileSync('notes.json', originalNoteString);
let noteString = fs.readFileSync('notes.json');
let note = JSON.parse(noteString);
console.log(typeof note);
console.log(note.title);