微信小程序写入本地文件.txt
// 写入本地文件 let fsm = wx.getFileSystemManager(); fsm.writeFile({ filePath: wx.env.USER_DATA_PATH + '/boos_cookie.txt', data: "xcx_cookie" + new Date().getTime(), encoding: 'utf8', success: res => { console.info('file->',res) }, fail: res => { console.info('fileerr',res) } }) //读取本地文件 wx.getFileSystemManager().readFile({ //读取文件 filePath: wx.env.USER_DATA_PATH + '/boos_cookie.txt', encoding: 'utf-8', success: res => { console.log(res.data) }, fail: console.error })