如何将字符串数组保存到 Node.js 中的 .json
文件中:
const alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'];
example.json
["a", "b", "c", "d", "e", "f", "g", "h"]
答案 0 :(得分:2)
在Node js中,您可以这样做。
const fs = require('fs');
var alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g'];
const jsonContent = JSON.stringify(alphabet);
fs.writeFile("./alphabet.json", jsonContent, 'utf8', function (err) {
if (err) {
return console.log(err);
}
console.log("The file was saved!");
});