微信原生小程序-图片上传回显(含组件封装详解)

实现效果(如图所示):点击上传=>弹出拍摄或从手机相册中选择图片或视频=>选择图片上传=>上传成功后回显图片。

文件梳理分析(注意点):

  1. index文件表示当前页面文件,case-upload-item文件表示封装的组件文件
  2. 代码中有运用到组件传值这一知识点,基础薄弱的同学先等等,这几天我会抽时间出一个组件传值详细版,代码中已写注释,大概能看懂。
  3. 代码中的 Config.HOST 是当前项目中的浏览器地址,例如:http://www.example.com 大家在使用的时候把 Config.HOST 更换成自己项目中的地址即可
  4. 代码完整,包含布局样式和方法,可以直接拿去使用,除了第三点中的Config.HOST其它地方都不需要更改。文章最后附上代码中运用到的小程序自带方法详解
  5. 注释说明的公用方法可以放入项目中的untils内 (建议)

话不多说,直接上代码(index表当前页面文件):

  • index.wxml
<view class="case-edit-upload-container"><view class="case-edit-upload-btn-item-container" bind:tap="onChooseImage"><view class="case-edit-upload">上传申请表</view></view><view wx:for="{{applications}}" wx:key="index"><case-upload-item case-upload-item-class="case-upload-item-class" fileLableImg="{{item.labelImg}}" fileName="{{item.name}}" fileUrl="{{item.url}}" bind:onDelete="onDeleteUploadFile"/></view>
</view>
  • index.wxss
.case-edit-upload-container {margin-bottom: 200rpx;
}.case-edit-upload-btn-item-container {flex: 1;height: 80rpx;border-radius: 100rpx;background: #CBB486;display: flex;justify-content: center;align-items: center;color: #fff;font-size: 32rpx;line-height: 36rpx;margin: 0rpx 20rpx;
}.case-edit-upload {display: flex;flex-direction: row;align-items: center;
}
// 组件暴露的css样式
.case-upload-item-class {margin-top: 30rpx;
}
  • index.ts
data:{//先在data 中定义applications:[]
}
// 图片上传
onChooseImage() {const _this = this;// 弹出拍摄或从手机相册中选择图片或视频wx.chooseMedia({// 最多可以选择的文件个数count: 9,// 拍摄视频最长拍摄时间,单位秒。时间范围为 3s 至 60s 之间。不限制相册。maxDuration: 60,success(res) {wx.showLoading({title: '上传中...',});let count = 0;// 本地临时文件列表const tempFilePaths = res.tempFiles;if (tempFilePaths.length > 0) {tempFilePaths.map((item) => {const { tempFilePath, size } = item;wx.uploadFile({// 这里的url代表服务器地址,这里要用完整的url,/index/uploadEvidence部分不是固定的,更换成自己项目的图片接口地址url: `${Config.HOST}/index/uploadEvidence`,// 要上传文件资源的路径 (本地路径)filePath: tempFilePath,// name的值可以自定义,代表文件对应的 keyname: 'evidence',success: function (res) {// res.data 服务器返回的数据const _res = JSON.parse(res.data);if (_res.code === 200) {const { applications } = _this.data;applications.push({name: tempFilePath,url: _res.data.scr || '',size: `${size}`,labelImg: _this.getLabelImgForUploadItem(_res.data.scr),})_this.setData({ applications });} else {wx.showToast({title: '部分文件不支持上传',icon: 'none'});}},fail: function () {wx.showToast({title: '文件上传失败',icon: 'error'});},complete: function () {count++;if (count === tempFilePaths.length) {wx.hideLoading();}}})})}}});
},
// 删除当前图片
onDeleteUploadFile(e) {const { detail: { fileUrl } } = e;const { applications = [] } = this.data;applications.map((item,index) => {const { url } = item;if (url === fileUrl) {applications.splice(index, 1);return;}});this.setData({ applications})
},
// 获取当前文件格式 (公用方法)
getFileSuffix(filePath: string): string{const index = (filePath && filePath.lastIndexOf(".")) || -1;const suffix = filePath && filePath.substr(index + 1);return suffix;
},
// 文件路径格式用于展示(公用方法)
getLabelImgForUploadItem(filePath: string): string{const suffix = this.getFileSuffix(filePath) || '';if (['doc', 'docx'].indexOf(suffix) >= 0) {return '/public/img/icon-word.png';} else if (['xls', 'xlsx'].indexOf(suffix) >= 0) {return '/public/img/icon-excel.png';} else if (['ppt', 'pptx'].indexOf(suffix) >= 0) {return '/public/img/icon-ppt.png';} else if (suffix === 'pdf') {return '/public/img/icon-pdf.png';} else if (['png', 'jpg'].indexOf(suffix) >= 0) {return '/public/img/icon-image.png';} else if (suffix === 'mp3') {return '/public/img/icon-audio.png';} else if (suffix === 'mp4') {return '/public/img/icon-video.png';}return '/public/img/icon-other.png';
}
  • case-upload-item.wxml (组件)
<view class="case-upload-item case-upload-item-class" data-file-url="{{fileUrl}}" bind:tap="onUploadItemClick"><image class="case-upload-item-img" src="{{fileLableImg}}" /><view class="case-upload-item-name">{{fileName}}</view><mp-icon class="case-upload-item-delete" icon="close" size="{{20}}" data-file-url="{{fileUrl}}" wx:if="{{showDelete}}" catchtap="onDeleteUploadItem"></mp-icon>
</view>

case-upload-item.wxss (组件)

.case-upload-item {height: 80rpx;border-radius: 2rpx;background: #fff;border: 1rpx solid #D9D9D9;display: flex;justify-content: space-between;align-items: center;padding-left: 30rpx;
}.case-upload-item-img {width: 40rpx;height: 48rpx;
}.case-upload-item-delete {height: 100%;display: flex;align-items: center;padding: 0rpx 30rpx;
}.case-upload-item-name {flex: 1;color: #000;font-size: 28rpx;font-weight: 500;line-height: 44rpx;margin: 0rpx 24rpx;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;
}

case-upload-item.ts (组件)

Component({// 定义组件外部样式的属性, 将外部定义的 CSS 类名传递到组件内部externalClasses: ['case-upload-item-class'],properties: {fileLableImg: {type: String,value: '',},fileName: {type: String,value: '',},fileUrl: {type: String,value: '',},showDelete: {type: Boolean,value: true,}},methods: {// 查看当前文件或图片onUploadItemClick(e: any) {console.log('onUploadItemClick:', e)const { currentTarget: { dataset: { fileUrl } } } = e;// 获取当前图片类型const suffix = this.getFileSuffix(fileUrl);console.log('suffix:', suffix)if (['doc', 'docx', 'xls', 'xlsx', 'pdf', 'ppt', 'pptx'].indexOf(suffix) >= 0) {wx.showLoading({title: '正在加载文件',})wx.downloadFile({// Config.HOST 代表项目中当前环境的地址,例如:https://www.baidu.com(这里是我从外部引入的,写自己项目环境即可)url: fileUrl.indexOf(Config.HOST) < 0 ? `${Config.HOST}${fileUrl}` : fileUrl,success: function (res) {const filePath = res.tempFilePathwx.openDocument({filePath: filePath,success: function (res) {console.log('打开文档成功:', res)},fail: function (err) {console.log('打开文档失败', err)}})},fail: function () {wx.showToast({title: '文件加载失败',duration: 2000});},complete: function () {wx.hideLoading()}});} else if (['png', 'jpg'].indexOf(suffix) >= 0) {wx.previewImage({current: fileUrl,urls: [`${Config.HOST}${fileUrl}`],});} else if (['mp4', 'mp3'].indexOf(suffix) >= 0) {wx.previewMedia({sources: [{ url: fileUrl.indexOf(Config.HOST) < 0 ? `${Config.HOST}${fileUrl}` : fileUrl, type: 'video' }],});}},//删除当前文件或图片,抛出当前url给父组件,并执行onDelete方法onDeleteUploadItem(e: any) {const { currentTarget: { dataset: { fileUrl } } } = e;this.triggerEvent('onDelete', { fileUrl });},// 获取当前文件类型 (公用方法)getFileSuffix (filePath: string): string {const index = (filePath && filePath.lastIndexOf(".")) || -1;const suffix = filePath && filePath.substr(index + 1);return suffix;}}
});

下面是代码中运用到的微信小程序自带方法的功能描述(附官网地址):

  • wx.hideLoading :wx.hideLoading(Object object) | 微信开放文档
  • wx.showLoading : wx.showLoading(Object object) | 微信开放文档
  • wx.chooseMedia(拍摄或从手机相册中选择图片或视频) :wx.chooseMedia(Object object) | 微信开放文档
  • wx.uploadFile : UploadTask | 微信开放文档
  • wx.showToast :wx.showToast(Object object) | 微信开放文档
  • wx.downloadFile :DownloadTask | 微信开放文档
  • wx.openDocument :wx.openDocument(Object object) | 微信开放文档
  • wx.previewImage :wx.previewImage(Object object) | 微信开放文档
  • wx.previewMedia:wx.previewMedia(Object object) | 微信开放文档

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/703967.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

pandas 读取Excel中有行名、列名的数据中的每个元素

读取Excel中有行名、列名的数据中的每个元素,使用pandas,Excel中的内容示例如下&#xff1a; 读取代码如下&#xff1a; def read_xlsx(file ):""" Excel矩阵数据读取 """try:df pd.read_excel(file)# 使用iterrows()方法迭代行for index, ro…

Linux初学1

Unix unix和LInux的关系 LInux的吉祥物tux Nginx Directoryhttps://mirror.iscas.ac.cn/centos/7/isos/x86_64/redhat7 网络连接 桥接模式&#xff1a;虚拟系统可以和外部系统通讯&#xff0c; 你自家里折腾当然桥接没问题&#xff0c;如果一个教室里全都用桥接&#xff1…

激光打标机:手机制造中不可或缺的加工设备

激光打标机在手机行业中有多种应用&#xff0c;主要体现在以下几个方面&#xff1a; 1. 手机外壳打标&#xff1a;光纤激光打标机在手机外壳上打标的痕迹非常美观&#xff0c;可以印上厂家品牌标识&#xff0c;既保证了手机外壳的美观&#xff0c;也提高了产品的打标质量和加工…

内网环境ubuntu设置静态ip、DNS、路由,不影响网络访问

内网环境通常是有线的&#xff0c;通过服务器的ip、mac、dns地址访问网络才生效的&#xff0c;如果ip地址变了&#xff0c;就不能访问网络了。 如果你的ip地址变了&#xff0c;或者要防止ip变更影响网络访问&#xff0c;就要设置 1、依次点击右上角的电源-设置&#xff0c;在打…

Element-ui-vue3-前端界面开发-配置-编辑main.js-nodejs基础语法-vue3-html模板语法-vue文件编译

前端配置 1.下载nodejs 18 lts2.配置nodejs和安装vue3.vue调试技巧3.1.debugger3.2.vue devtools4.编辑main.js5.nodejs基础语法5.1.import5.1.1.导入单个模块或组件5.1.2.导入整个模块或库5.1.3.导入默认导出5.1.4.导入 css文件5.1.5.导入模块和组件5.2.export5.2.1.命名导出5…

VMware Workstation 安装CentOS Linux操作系统

1.我们已经下载好VMware 创建新的虚拟机 2.选择典型 3.安装程序光盘映像文件 4.配置用户名密码 5.命名虚拟机&#xff0c;并确定位置 6.如图所示设置 7.等待&#xff08;时间会有点久&#xff09; 8.输入密码登入账号

Java开发大厂面试第01讲:String 的特点及其重要的方法都有哪些?

几乎所有的 Java 面试都是以 String 开始的&#xff0c;如果第一个问题没有回答好&#xff0c;则会给面试官留下非常不好的第一印象&#xff0c;而糟糕的第一印象则会直接影响到自己的面试结果&#xff0c;就好像刚破壳的小鹅一样&#xff0c;会把第一眼看到的动物当成自己的母…

长期的图片活码怎么做?在线制作图片活码的方法

现在通过扫描二维码来查看内容的方式&#xff0c;在日常生活中越来越常见&#xff0c;其中扫码看图就是很常用的一种方式。在很多的公共场所或者宣传单页上&#xff0c;扫码后即可查看相关的图片信息&#xff0c;从而获取我们需要的内容&#xff0c;那么在电脑上将图片生成二维…

SpringBoot上传文件到服务器(跨服务器上传)

目录 &#xff08;一&#xff09;上传文件到本地&#xff08;windows&#xff09; &#xff08;二&#xff09;上传文件到linux服务器 &#xff08;三&#xff09;跨服务器上传文件 &#xff08;一&#xff09;上传文件到本地&#xff08;windows&#xff09; 1.新建一个文件…

粘贴图片上传,显示剪切板中的图片

<van-cell-group inset><van-fieldpaste.native"(e) > handlePasting(e, index)"autosizeplaceholder"请将图片粘贴到此处"/> </van-cell-group> <div class"img-list"><divclass"img-item"v-for"…

全面提升数据采集效率:IP代理产品的应用与评估详解

全面提升数据采集效率&#xff1a;IP代理产品的应用与评估详解 文章目录 全面提升数据采集效率&#xff1a;IP代理产品的应用与评估详解背景应用场景&#xff1a;平台首页信息抓取准备评测素材详细的产品使用和评测流程产品介绍亮数据的IP代理服务亮数据的爬虫工具及采集技术 注…

信创基础硬件之整机

整机是成套或整体单机、单台形式的机电产品&#xff0c;由硬件系统(hardware system)和软件系统(software system)两部分组成的&#xff0c;包括主板、内存条、硬盘、CPU、光驱、机箱、显示器、键盘、鼠标、音响等部件。 服务器作为在网络环境下为客户机提供各种服务、特殊专用…