node 文件插入

来源:互联网 发布:暗黑团队毁魔兽 知乎 编辑:程序博客网 时间:2024/05/22 14:33
var fs = require("fs");fs.appendFile('message.txt', 'data to append', (err) => {  if (err) throw err;  console.log('文件插入成功');});console.log("文件插入");

原创粉丝点击