摘要: 1. 在Node.js中写入文件的最简单方法是使用fs.writeFile() const fs=require('fs'); const content = 'this is the content'; fs.writeFile('./jiyu.txt',content,(err)=>{ if(e 阅读全文
posted @ 2022-02-28 17:09 神奇小兵 阅读(841) 评论(0) 推荐(0) 编辑
摘要: 1、fs.readFile(filename,[encoding],[callback(err,data)])两种用法 (1)var fs = require('fs'); fs.readFile('./jiyu.txt',(err,data)=>{ if(err) console.log(err) 阅读全文
posted @ 2022-02-28 11:41 神奇小兵 阅读(244) 评论(0) 推荐(0) 编辑