gpt4 book ai didi

javascript - Node.js - 不使用 FS lib 附加 JSON 文件 - require('fs)

转载 作者:行者123 更新时间:2023-12-02 20:54:34 24 4
gpt4 key购买 nike

我可以从以下位置读取 JSON 文件:

const json = require('file.json')
console.log(json)

没关系!

但是现在,我想在 file.json 中附加值,而不需要 require('fs')/writeFileSync。

可能吗?

最佳答案

不,不使用 fs 模块就不可能更新文件(至少据我所知)。

但是你可以这样做:

const fs = require("fs");

const json = require('file.json');
console.log(json);

// Update json

fs.writeFile('file.json', JSON.stringify(json), (err, data) => {
//handle result
});

关于javascript - Node.js - 不使用 FS lib 附加 JSON 文件 - require('fs),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61521807/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com