标签: node.js fs
fs.writeFileSync(tempPath, JSON.stringify(abc), "utf8");
上面的示例是将abc(.json格式数据)写入tempPath指定的文件。
.json
tempPath
我的问题是,如果abc是.js格式文件,如何使用fs.writeFileSync在file处写入tempPath。或使用任何其他方法。
.js
fs.writeFileSync
file
非常感谢!