1. 程式人生 > >微信小程序:圖片預覽

微信小程序:圖片預覽

bind 預覽 bin cti hat pre -s images image

wxml頁面:

<image src=‘{{UPLOAD_IMAGES_URL}}{{vv.img_s}}‘ data-src="{{vv.img}}" bindtap="previewImage"></image>

js:

/*預覽*/
previewImage:function(e){
console.log(‘previewImage‘);
var current = e.currentTarget.dataset.src;
var that = this;
var url = [that.data.UPLOAD_IMAGES_URL+current];
wx.previewImage({
current: current, // 當前顯示圖片的http鏈接
urls: url // 需要預覽的圖片http鏈接列表
})
}

微信小程序:圖片預覽