您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關微信小程序如何實現上傳多張圖片、刪除圖片,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
效果圖:
本來用的是小程序提供的 mp-uploader 上傳圖片的組件,無奈次組件刪除效果不是我想要的,只能用 wx.chooseImage進行上傳圖片,在使用uplaodFile將圖片發送給后臺服務器。
下面直接展示代碼:
wxml:
<view class="con_titles"> <view class="con_left"> <image src="../../images/comint.png"></image> <text class="titles_t">患者病歷</text> </view> <view class="img_num">{{imgShow.length}}/6</view> </view> <view class="page__bd"> <!-- <mp-uploader style='color:#353535' bindfail="uploadError" bindsuccess="uploadSuccess" select="{{selectFile}}" upload="{{uplaodFile}}" files="{{files}}" max-count="6" title="患者病歷"></mp-uploader> --> <view class="add-image"> <view class="images-boxc" wx:for="{{imgShow}}" wx:for-item="item" wx:key="image"> <image class="image_size" data-index="{{index}}" data-src="{{item}}" src="{{item}}" bindtap="clickImage"></image> <image class="delete-image" data-index="{{index}}" src="../../images/delete_img.png" bindtap="deleteImage"></image> </view> <view class="images-add" wx:if="{{imgShow.length<6}}"> <image class="image_size image_sizen" src="../../images/add_img.png" bindtap="chooseImage"></image> </view> </view> </view>
wxss:
/* 上傳圖片 */ .images-boxc { position: relative; border: dashed 1px #bfbfbf; width: 139rpx; height: 139rpx; margin-right: 32rpx; margin-bottom: 32rpx; } .delete-image { position: absolute; width: 30rpx; height: 30rpx; right: 16rpx; top: 16rpx; } .add-image { display: flex; flex-wrap: wrap; } .image_size { width: 139rpx; height: 139rpx; } .image_sizen { height: 142rpx; }
js:
data: { count: 6, //設置最多6張圖片 allImg: [], imgShow: [], }, // 上傳圖片 chooseImage: function() { wx.showLoading({ title: '加載中...', mask: true }) var that = this; var imgShow = that.data.imgShow; var count = that.data.count - imgShow.length; //設置最多6張圖片 wx.chooseImage({ count: count, sizeType: ['compressed'], // 可以指定是原圖還是壓縮圖,默認二者都有 sourceType: ['album', 'camera'], // 可以指定來源是相冊還是相機,默認二者都有 success: function(res) { console.log(res) that.uplaodFile(res) for (var i = 0, h = res.tempFilePaths.length; i < h; i++) { imgShow.push(res.tempFilePaths[i]); that.setData({ imgShow: imgShow }) } wx.hideLoading({ title: '加載中...', mask: false }) } }) }, // 刪除圖片 deleteImage(e) { let self = this; let index = e.target.dataset.index; let imgShow = self.data.imgShow; let allImg = self.data.allImg; allImg.splice(index, 1); imgShow.splice(index, 1); this.setData({ imgShow: imgShow, allImg: allImg }) }, previewImage: function(e) { console.log(this.data.files) wx.previewImage({ current: e.currentTarget.id, // 當前顯示圖片的http鏈接 urls: this.data.files // 需要預覽的圖片http鏈接列表 }) }, selectFile(files) { console.log('files', files) // 返回false可以阻止某次文件上傳 }, uplaodFile(files) { console.log('upload files', files) let that = this files.tempFilePaths.forEach(element => { util.uploadFile('/fastdfsServer/fileUpload', element, 'file', {}, function(res) { //上傳本地圖片地址到服務器 返回地址 存放到input提交時取值 res = JSON.parse(res); if (res.responseCode == 0) { sysMsg.sysMsg("上傳成功", 1000, 'success'); that.setData({ allImg: that.data.allImg.concat(res.responseBody) }); } else { sysMsg.sysMsg("上傳失敗", 1500, 'error'); } }); }); // 文件上傳的函數,返回一個promise return new Promise((resolve, reject) => { resolve({ urls: files.tempFilePaths }); setTimeout(() => { reject('some error') }, 10000) }) }, uploadError(e) { console.log('upload error', e.detail) }, uploadSuccess(e) { // this.setData({ // allImg: this.data.allImg.concat(e.detail.urls[0]) // }); console.log('upload success', e.detail, e.detail.urls) },
關于微信小程序如何實現上傳多張圖片、刪除圖片就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。