JavaScript在Node.js中写入文件

我一直在尝试找到一种使用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!");

});

// Or

fs.writeFileSync('/tmp/test-sync', 'Hey there!');

以上是 JavaScript在Node.js中写入文件 的全部内容, 来源链接: utcz.com/qa/402806.html

回到顶部