NodeJS 在javascript中是否有file_put_contents的等价物?

yhived7q  于 2023-01-25  发布在  Node.js
关注(0)|答案(2)|浏览(98)

我能问一下,在javascript中file_put_contents的等价物是什么吗?
先谢谢你。

x6h2sr28

x6h2sr281#

用JavaScript吗没有。
在NodeJS中?是的,它叫writeFile,文档中的例子如下:

fs.writeFile('message.txt', 'Hello Node', function (err) {
  if (err) throw err;
  console.log('It\'s saved!');
});
wi3ka0sx

wi3ka0sx2#

如果您**不想覆盖文件的内容,**而是要附加到文件中,请添加到上面的回复中

var fs = require('fs'); 

fs.writeFile(
    "foo.txt", // file
    "bar", // string
    {
        encoding: "utf8",
        flag: "a" // flag that specifies that it will append stuff
    },
    function(){ console.log("done!") }
)

相关问题