第一步
找到你的txt文件,重命名为json文件
第二步
上传到云存储中,获取File ID
文章来源:https://www.toymoban.com/news/detail-520891.html
第三步
编写js代码
相关技术文档:
https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readFile.html文章来源地址https://www.toymoban.com/news/detail-520891.html
onShow(){
wx.cloud.downloadFile({
fileID: 'cloud://xsl1-grzy6.7873-xsl1-grzy6-1259288832/管.json'
}).then(res => {
console.log(res.tempFilePath)
let fs=wx.getFileSystemManager()
let result = fs.readFileSync(res.tempFilePath,"utf-8")
this.setData({
allcontent: result
})
})
}
完成
到了这里,关于微信小程序如何读取本地云存储txt数据,避免乱码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!