- 需求的场景描述(希望解决的问题):目前小程序的 Page 生命周期中的 onShareAppMessage 的 imageUrl 无法识别云开发的文件路径。
- 希望提供的能力:onShareAppMessage 中的 imageUrl 提供云开发文件路径的支持
尝试绕过方式
wx.cloud.getTempFileURL({ fileList: [ this .data.store.images[0]], success: res =>{ return { title: 'here is title' path: path, imageUrl: res.fileList[0].tempFileURL } }, fail: error => { console.error( "出现Bug了" ,error) } }) |
用云文件 ID 换取真实链接。有效期,默认一天且最大不超过一天
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-client-api/storage/getTempFileURL.html
建议还是用腾讯的cos 或者其他对象存储
我目前用的是这个方法。但是我觉得应该由官方直接支持,而不是开发者去换取。
同求