收藏
回答

希望小程序的 onShareAppMessage 中的 image 支持云开发

框架类型 问题类型 终端类型 AppID 基础库版本
小程序 需求 客户端 wxd1ca70db507085dd 2.4.3

- 需求的场景描述(希望解决的问题):目前小程序的 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)
        }
      })


回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容