当前位置:
首页 > 网站开发 > JavaScript >
-
JavaScript教程之vue项目中结合element ui解决连续上传
编码都是以需求为导向的,所以编码前一定要弄清楚需要的结果是什么,然后再开始编码。
现在简单的说下需求:如下图所示,点击蓝色的“+”按钮,可以连续生成多个图片上传框,每个图片上传框都是单独上传图片,编辑互不影响。
现在说下我的代码实现过程:
element ui: <div class="form-right"> <div class="right_btns">转账汇款信息 <el-button type="primary" @click="addupload" v-if="adduploadShow">+</el-button> </div> <div class="upload_parent" v-if="uploadShow" v-for="(item, index) in datas_upload" :key="index"> <div class="defind_img_s"> <img :src="item.url" class="defind"> <el-upload :ref='"upload" + index' name="img_b" class="upload-demo" :action="uploadUrl" :headers="upload_hearder" :on-remove='handleRemove' :on-success='uploadSuc' :file-list='fileList' :show-file-list="false"> <div @click='getUploadTag(item, index)' class="up_btns">{{item.up_btn}}</div> </el-upload> <span v-show="item.upbtnGroup" class="upbtnGroups" @click="delupload(item,index)">删除</span> </div> </div> </div>
data() { return { // 上传成功后的id uploadId: '', // 重新上传成功后的id resetUploadId: '', // upload控件tag uploadTag: 0, // 上传图片文件列表 fileList: [], upItem: {}, // 所有账号-select accVal: '1', // 图片上传框初始数组 datas_upload: [{ up_btn: '上传图片', upbtnGroup: false, imgId: '', url: '' }], // 图片初始id数组 imgArryid: [], } }, methods: { // 点击“+”按钮生成图片上传框 addupload() { this.datas_upload.push({ up_btn: '上传图片', upbtnGroup: false, imgId: '', url: '' }) }, // 获取图片id getimgId() { for (var i = 0; i < this.datas_upload.length; i++) { this.imgArryid.push(this.datas_upload[i].imgId) } console.log(this.imgArryid, 785) return this.imgArryid }, // 图片上传 getUploadTag(item, index) { // console.log(response, file, fileList, 564) this.uploadTag = index console.log(index, 220) this.upItem = item }, // 图片上传成功 uploadSuc(response, file, fileList) { console.log(1230, response, response.id) console.log(file, fileList, 6630) // 把图片id添加到 uploadId 数据中 this.datas_upload[this.uploadTag].imgId = response.id this.uploadId = response.id this.upItem.up_btn = '重新上传图片' this.upItem.upbtnGroup = true var imgs = 'imgs' + this.uploadTag console.log(this.$refs.imgs, 267) this.upItem.url = file.url }, // 上传图片-删除 delupload(item, index) { console.log(index, 562) for (var i = 0; i < this.datas_upload.length; i++) { if (i != 0) { if (index == i) { this.datas_upload.splice(i, 1) this.datas_upload[index].imgId = '' } } else if (i == 0) { console.log(index, item, 563) this.datas_upload[index].imgId = '' this.datas_upload[index].url = '' item.up_btn = '上传图片' item.upbtnGroup = false } } }, // 重新上传-success resetUploadSuc(response, file, fileList) { this.resetUploadId = response.id this.conResUploadView = false this.conRessubmitView = true } }
注意:像这种可以生成多个数据的,首先想到使用数组的v-for循环遍历来实现,初始化默认有一个图片上传框,那就给数组一个初始化的对象,每当点击按钮就往数组中添加新的对象,利用数据的双向绑定,便能生成相应的dom元素,达到想要的效果。
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式