首先我们应该将所用到的图片数组进行转化
在onload当中我们去调用微信提供的获取网络路径图片的方法
for(var i=0;i<this.goods.imgs.length;i++){
console.log(i)
this.clipImg2(this.goods.imgs[i].thumb, this);
}
//如上我们将,得到的图片数组循环去调用我们的转化方法,在方法当中将转化之后的到的路径加入
//要预览的数组当中
clipImg2(imgsrc, aaa) {
let that = aaa;
wx.getImageInfo({
src: imgsrc,
success: function(res) {
let urls = res.path;
console.log(res)
that.imgsrcima2.push(urls)
that.$apply();
},
});
}
//最后将在显示图片的地方将绑定一个方法,调用微信预览的方法将准备好的数组放入即可
//这是放在methods当中用来点击触发预览的方法
//imgsrcima2 就是我们提前准备好的数组
previewImage (e) {
console.log(this.imgsrcima2)
let curent = e.thumb
wx.previewImage({
current: curent, // 当前显示图片的http链接
urls: this.imgsrcima2 // 需要预览的图片http链接列表
})
},
//最后是将触发绑定在页面当中的方式
<image src="{{item.thumb}}" data-src="{{item}}" class="slide-image" @tap="previewImage"></image>
以上本人在自己的demo当中写的方法,可以根据自己的情况去变化,但是万变不离其宗嘛!