showGroupCode: function(){
let group_share_info = this.data.group_share_info;
let imgUrl = group_share_info.share_wxcode;
console.log('imgUrl =======> ', imgUrl)
if(imgUrl) {
wx.previewImage({
current: imgUrl, // 当前显示图片的http链接
urls: [imgUrl], // 需要预览的图片http链接列表
success: (e) => {
console.log('预览 ===> success', e)
},
fail: (e) => {
console.log('预览 ===> fail', e)
}
})
} else {
wx.showModal({
title: "提示",
content: "未设置联系方式,请联系管理员",
showCancel: false
})
}
},
iphone上一直在加载无法显示大图,打印如下:
当我把链接复制到浏览器可以打开图片,之前以为是http的原因,后台图片改成了https的,然后配置了业务域名和下载域名等,也还是存在这个bug
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)