希望小程序的 onShareAppMessage 中的 image 支持云开发
- 需求的场景描述(希望解决的问题):目前小程序的 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) } }) |