微信小程序实现一张或多张图片上传(云开发)
更新时间:2019年09月25日 09:23:40 作者:Memory沙漏
这篇文章主要介绍了微信小程序实现一张或多张图片上传,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
一、简介:
这篇文章向大家展示的是把图片上传到云数据库中,这是我做商城项目时研究的。大家都知道,云开发是没有后端开发的,所有图片我们要放到云数据库中。
二、素材图:
:
三、效果图:
四、代码:
wxml:
<!--miniprogram/pages/fb/fb.wxml--> <view class='pages'> <view class='top'><text class='top_name'>商品图片:</text></view> <!-- 图片 --> <view class="images_box"> <block wx:key="imgbox" wx:for="{{imgbox}}"> <view class='img-box'> <image class='img' src='{{item}}'></image> <view class='img-delect' data-deindex='{{index}}' bindtap='imgDelete1'> <image class='img' src='../../images/delect.png'></image> </view> </view> </block> <view class='img-box' bindtap='addPic1' wx:if="{{imgbox.length<9}}"> <image class='img' src='../../images/add_image.png'></image> </view> </view> <button bindtap='fb'>上传图片</button> </view>
wxss:
/* miniprogram/pages/fb/fb.wxss */ page{ background-color: rgba(200, 198, 201, 0.527); } .pages{ width: 98%; margin: auto; overflow: hidden; } .top{ width: 100%; overflow: hidden; margin: auto; font-size: 50rpx; background-color: white; border-left: 8rpx solid rgb(9, 245, 60); border-bottom: 1rpx solid rgba(117, 116, 116, 0.527); } .top_name{ margin-left: 20rpx; } /* 图片 */ .images_box{ width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; background-color: white; } .img-box{ border: 5rpx; border-style: solid; border-color: rgba(0, 0, 0, 0.452); width: 200rpx; height: 200rpx; margin-left: 35rpx; margin-top: 20rpx; margin-bottom: 20rpx; position: relative; } /* 删除图片 */ .img-delect{ width:50rpx; height:50rpx; border-radius:50%; position:absolute; right:-20rpx; top:-20rpx; } .img{ width: 100%; height: 100%; } .jiage{ height: 60rpx; width: 90%; margin-left: 5%; margin-right: 5%; background-color: white; display: flex; justify-content: flex-start; } .rmb{ width: 280rpx; border: 2rpx solid rgb(199, 197, 197); } button{ margin-top: 20rpx; background-color: green; } .radio-group{ display: flex; }
js:
// pages/fb/fb.js const app = getApp() const db = wx.cloud.database();//初始化数据库 Page({ /** * 页面的初始数据 */ data: { imgbox: [],//选择图片 fileIDs: [],//上传云存储后的返回值 }, // 删除照片 && imgDelete1: function (e) { let that = this; let index = e.currentTarget.dataset.deindex; let imgbox = this.data.imgbox; imgbox.splice(index, 1) that.setData({ imgbox: imgbox }); }, // 选择图片 &&& addPic1: function (e) { var imgbox = this.data.imgbox; console.log(imgbox) var that = this; var n = 5; if (5 > imgbox.length > 0) { n = 5 - imgbox.length; } else if (imgbox.length == 5) { n = 1; } wx.chooseImage({ count: n, // 默认9,设置图片张数 sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有 sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有 success: function (res) { // console.log(res.tempFilePaths) // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片 var tempFilePaths = res.tempFilePaths if (imgbox.length == 0) { imgbox = tempFilePaths } else if (5 > imgbox.length) { imgbox = imgbox.concat(tempFilePaths); } that.setData({ imgbox: imgbox }); } }) }, //图片 imgbox: function (e) { this.setData({ imgbox: e.detail.value }) }, //发布按钮 fb: function (e) { if (!this.data.imgbox.length) { wx.showToast({ icon: 'none', title: '图片类容为空' }); } else { //上传图片到云存储 wx.showLoading({ title: '上传中', }) let promiseArr = []; for (let i = 0; i < this.data.imgbox.length; i++) { promiseArr.push(new Promise((reslove, reject) => { let item = this.data.imgbox[i]; let suffix = /\.\w+$/.exec(item)[0];//正则表达式返回文件的扩展名 wx.cloud.uploadFile({ cloudPath: new Date().getTime() + suffix, // 上传至云端的路径 filePath: item, // 小程序临时文件路径 success: res => { this.setData({ fileIDs: this.data.fileIDs.concat(res.fileID) }); console.log(res.fileID)//输出上传后图片的返回地址 reslove(); wx.hideLoading(); wx.showToast({ title: "上传成功", }) }, fail: res=>{ wx.hideLoading(); wx.showToast({ title: "上传失败", }) } }) })); } Promise.all(promiseArr).then(res => {//等数组都做完后做then方法 console.log("图片上传完成后再执行") this.setData({ imgbox:[] }) }) } }, })
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
推荐三款不错的图片压缩上传插件(webuploader、localResizeIMG4、LUploader)
这篇文章主要为大家详细介绍了三款不错的图片压缩上传插件,webuploader、移动端上传插件localResizeIMG4以及LUploader)2017-04-04javascript中IE浏览器不支持NEW DATE()带参数的解决方法
在火狐下 可以正常取得时间,在IE7下 却是 NaN。纠结老长时间,放弃了new date 然后再老外的论坛中找了一段段代码可以兼容所有浏览器的格式化日期代码2012-03-03JavaScript中 ES6 generator数据类型详解
generator 是ES6引入的新的数据类型,由function* 定义, (注意*号),接下来通过本文给大家介绍js中 ES6 generator数据类型,非常不错,感兴趣的朋友一起学习吧2016-08-08JavaScript常用截取字符串的三种方式用法区别实例解析
本文给大家分享JavaScript常用截取字符串的三种方式及每种用法的区别解析,感兴趣的朋友跟随脚本之家小编一起看看吧2018-05-05
最新评论