var FileSystemManager = wx.getFileSystemManager()
FileSystemManager.writeFile({
filePath: `${wx.env.USER_DATA_PATH}/hello.txt`,
data: data.Body,
encoding: 'utf8',
success(res) {
console.log(res)
},
fail(res) {
console.error(res)
}
})
微信小程序${wx.env.USER_DATA_PATH}在哪
文章讲述了在微信小程序中使用wx.getFileSystemManager()获取文件系统管理器,然后通过writeFile方法将数据写入到hello.txt文件,展示了成功和失败回调的处理。
摘要由CSDN通过智能技术生成