這篇文章主要介紹了微信小程式實現圖片上傳、刪除和預覽功能的方法,涉及微信小程式介面佈局、事件回應及圖片操作相關實現技巧,需要的朋友可以參考下
本文實例講述了微信小程式實作圖片上傳、刪除和預覽功能的方法。分享給大家供大家參考,具體如下:
這裡主要介紹一下微信小程式的圖片上傳圖片刪除和圖片預覽
版面
<view class="img-v"> <view class="img" wx:for="{{imgs}}" wx:for-item="item" wx:key="*this"> <image src="{{item}}" data-index="{{index}}" mode="aspectFill" bindtap="previewImg"></image> <view class="delete-btn" data-index="{{index}}" catchtap="deleteImg"></view> </view> <view class="upload-img-btn" bindtap="chooseImg"></view> </view>
JS處理
data: { imgs: [] }, // 上传图片 chooseImg: function (e) { var that = this; var imgs = this.data.imgs; if (imgs.length >= 9) { this.setData({ lenMore: 1 }); setTimeout(function () { that.setData({ lenMore: 0 }); }, 2500); return false; } wx.chooseImage({ // count: 1, // 默认9 sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有 sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有 success: function (res) { // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片 var tempFilePaths = res.tempFilePaths; var imgs = that.data.imgs; // console.log(tempFilePaths + '----'); for (var i = 0; i < tempFilePaths.length; i++) { if (imgs.length >= 9) { that.setData({ imgs: imgs }); return false; } else { imgs.push(tempFilePaths[i]); } } // console.log(imgs); that.setData({ imgs: imgs }); } }); }, // 删除图片 deleteImg: function (e) { var imgs = this.data.imgs; var index = e.currentTarget.dataset.index; imgs.splice(index, 1); this.setData({ imgs: imgs }); }, // 预览图片 previewImg: function (e) { //获取当前图片的下标 var index = e.currentTarget.dataset.index; //所有图片 var imgs = this.data.imgs; wx.previewImage({ //当前显示图片 current: imgs[index], //所有图片 urls: imgs }) }
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
利用vue.js如何實作$refs與$emit 父子元件互動
#以上是在微信小程式中如何實現圖片上傳等一系列功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!