微信管理后台已经设置最低基础库为2.16.1,真机调试跟开发工具都有效果,手机上无效 wx.downloadFile({ url: this.data.downList[this.data.currentIndex], success: (res) => { console.log(res,'res') wx.showShareImageMenu({ path: res.tempFilePath, }) } })
wx.showShareImageMenu 部分手机没有反应?图片地址已经配置合法域名,部分手机好用,部分手机拉取不了,showShareImageMenu没反应,打开调试工具后就好用了 wx.downloadFile({ url: this.data.shareImgList.shareUrl1,//服务器的图片地址,已设置合法域名 success: (res) => { console.log(res.tempFilePath) wx.showShareImageMenu({ path: res.tempFilePath })
2022-04-06