如何在Javascript中将字符串数组保存到JSON文件?

时间:2018-07-29 06:31:31

标签: javascript arrays json node.js

如何将字符串数组保存到 Node.js 中的 .json 文件中:

const alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'];
  

example.json

["a", "b", "c", "d", "e", "f", "g", "h"]

1 个答案:

答案 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!");
});