现在 Deno 支持使用Deno.writeFile编辑 JSON 文件:
const encoder = new TextEncoder();
const data = encoder.encode("Hello world\n");
await Deno.writeFile("hello1.txt", data); // overwrite "hello1.txt" or create it
await Deno.writeFile("hello2.txt", data, {create: false}); // only works if "hello2.txt" exists
await Deno.writeFile("hello3.txt", data, {mode: 0o777}); // set permissions on new file
await Deno.writeFile("hello4.txt", data, {append: true}); // add data to the end of the file
我找不到一种方法来编辑具有高度灵活性的文件,例如按位置、替换或正则表达式。
然后您唯一的选择是将文件加载到内存中,对其进行编辑,然后写入整个文件。
// load file
const decoder = new TextDecoder("utf-8");
const content = decoder.decode(await Deno.readFile('data.json'));
const json = JSON.parse(content);
// sets new data
json.data = "new data";
// write new data
const newtxt = JSON.stringify(json);
const newdata = new TextEncoder().encode(newtxt)
await Deno.writeFile("data.json", newdata);
let data = await Deno.readFile("data.json");
console.log(decoder.decode(data));