wx.previewImage Iframe不起作用

2021-11-08 10:33:42 浏览数 (1)

代码语言:javascript复制
//imgArray为图片列表,corecturl为当前图片路径
   parent.WeixinJSBridge.invoke("imagePreview", { "urls": imgArray, "current": corecturl })
 // wx.previewImage({
 //     current: corecturl,
 //     urls: imgArray
 // });

只需要将原来的wx.previewImage替换为parent.WeixinJSBridge.invoke

0 人点赞