哥,为什么我用你的代码获取不到云存储里面的临时链接呢?
客户端如何下载并预览云存储的文件?// 下载并预览文件 downloadFile: function(e) { console.log(e); let url = e.currentTarget.dataset.url; wx.cloud.downloadFile({ fileID: url }).then(res => { // get temp file path console.log("获取临时链接成功",res.tempFilePath) wx.downloadFile({ url: res.tempFilePath, header: {}, success: function(res) { var filePath = res.tempFilePath; console.log(filePath); wx.openDocument({ filePath: filePath, success: function(res) { console.log('打开文档成功') }, fail: function(res) { console.log(res); }, complete: function(res) { console.log(res); } }) }, fail: function(res) { console.log('文件下载失败'); }, complete: function(res) {}, }) }).catch(error => { // handle error }) } 图一:在开发者工具返回http://的临时链接,文档能正常打开: [图片] 图二:在手机端(客户端)返回wxfile://的临时文件,文档无法正常打开: [图片] 问题:想在小程序中预览云存储的Word文档,在开发者工具是可以正常预览文件的,但在客户端就无法打开。请问这是什么原因,有没有较好的途径解决这个临时链接的问题?
2023-08-15