gpt4 book ai didi

javascript - 在 Node.js 中写入文件

转载 作者:IT老高 更新时间:2023-10-28 11:10:32 27 4
gpt4 key购买 nike

我一直在尝试找到一种在使用 Node.js 时写入文件的方法,但没有成功。我该怎么做?

最佳答案

File System 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 中写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2496710/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com