按照视频一步步来的,前面都没问题,就最后预览图片点击无反应,请问这是哪里出问题了?
js
data: {
wordsNum:0,//输入文字个数
footerBottom:0,
image:[],
selectPhoto:true,//添加图片元素是否显示
},
onPreviewImage(event){
wx.previewImage({
current:event.target.dataset.imgsrc,//表示当前预览图片对应的地址
urls: this.data.image,//要预览的图片数组列表
})
},
wxml
<!--显示图片-->
<block wx:for="{{image}}" wx:key="*this">
<view class="image-wrap">
<image class="image" src="{{item.path}}" mode="aspectFill" bindtap="onPreviewImage" data-imgsrc="{{item.path}}"></image>
<i class="iconfont icon-shanchu1" bindtap="onDelImage" data-index="{{index}}"></i>
</view>
</block>