第一步
找到你的txt文件,重命名为json文件
第二步
上传到云存储中,获取File ID
第三步
编写js代码
相关技术文档:
https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readFile.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
})
})
}