【微信小程序】小程序如何读取本地云存储txt数据,避免乱码


第一步

找到你的txt文件,重命名为json文件

            

 第二步

上传到云存储中,获取File ID

 第三步

 编写js代码

onShow:function(){
  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
    })
  })
}

 完成

相关文档:https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readFile.html

相关