在 Node.js 中难以写入文件?你并不孤单。以下是文件系统 API 详细信息的细分,重点关注最常见的方法:
const fs = require('fs'); fs.writeFile("/tmp/test", "Hey there!", function(err) { if(err) { return console.log(err); } console.log("The file was saved!"); });
这种异步方法提供了一个回调函数来处理错误或成功写入。或者,如果首选同步写入,则可以使用 fs.writeFileSync:
fs.writeFileSync('/tmp/test-sync', 'Hey there!');
以上是如何在 Node.js 中轻松写入文件?的详细内容。更多信息请关注PHP中文网其他相关文章!