将 JSON 对象写入文件。
使用 fs.writeFile()
,模板字面量 和 JSON.stringify()
将 json
对象写入到 .json
文件中。
const fs = require('fs'); const JSONToFile = (obj, filename) => fs.writeFile(`${filename}.json`, JSON.stringify(obj, null, 2));
JSONToFile({ test: 'is passed' }, 'testJsonFile'); // writes the object to 'testJsonFile.json'