当前位置:网站首页 > 云计算与后端部署 > 正文

ElementUI 实现上传同名且后缀不同的两个文件

<el-upload ref="upload" multiple name="File" :action="apis.manageModel" :auto-upload="false" :limit="2" :http-request="httpRequest" :on-exceed = "cmx.fileOption.handleExceed" :on-change="cmx.fileOption.onChangeUpload" :before-remove="cmx.fileOption.beforeRemove" :before-upload="cmx.fileOption.beforeAvatarUpload" :file-list="newData.fileList" > <el-button size="small" type="primary">点击上传</el-button> <span slot="tip" class="el-upload__tip">&nbsp;&nbsp;&nbsp;只能上传一组同名dll及xml文件</span> </el-upload> //限制文件格式为dll .DLL .xml .XML beforeAvatarUpload(file) { let fileName = file.name.substring(file.name.lastIndexOf(".") + 1);//获取文件后缀 const isDLL = fileName === "dll"; const isDLL1 = fileName === "DLL"; const isXML = fileName === "xml"; const isXML1 = fileName === "XML"; if (!isDLL &&!isDLL1 &&!isXML &&!isXML1 ) { this.$message.error( "上传文件只支持.dll、.DLL、.xml、.XML格式!" ); } return ( isDLL ||isDLL1 ||isXML ||isXML1 ); }, // 限制文件个数 handleExceed(files, fileList) { this.$message.warning(`请最多上传 ${this.limit} 个文件。`); }, // 限制上传两个同名文件且后缀不同的文件 onChangeUpload(file, fileList) { var temp = 0; fileList.forEach((item,idx) => { let fileName=file.name.substring(0,file.name.indexOf("."));//获取文件名 let itemName=item.name.substring(0,item.name.indexOf(".")); if (file.name === item.name) { temp++ if (temp === 2) { this.$message({ message: '请上传不同后缀的同名文件', type: 'info' }) fileList.splice(idx, 1) } } if (fileName!== itemName) { this.$message({ message: '请上传两个同名文件', type: 'info' }) fileList.splice(idx, 1) } }) }, // 移除文件 beforeRemove(file, fileList) { return this.$confirm(`确定移除 ${file.name}?`); },

 

到此这篇ElementUI 实现上传同名且后缀不同的两个文件的文章就介绍到这了,更多相关内容请继续浏览下面的相关推荐文章,希望大家都能在编程的领域有一番成就!

版权声明


相关文章:

  • VUE项目部署到tomcat服务器-前端配置2024-12-01 14:54:08
  • 异步操作之后让await后续的代码能够继续执行2024-12-01 14:54:08
  • 前端项目架构模板-(三)交互式打包及自动化部署前端项目2024-12-01 14:54:08
  • docker基础(三)-制作镜像部署vue前端项目2024-12-01 14:54:08
  • docker基础(五)-多阶段构建部署vue前端项目2024-12-01 14:54:08
  • samba共享服务端口(samba服务端口号)2024-12-01 14:54:08
  • oracle 端口(oracle 端口配置文件)2024-12-01 14:54:08
  • linux连接redis客户端(linux如何连接redis)2024-12-01 14:54:08
  • git服务器默认端口(git 服务端)2024-12-01 14:54:08
  • 苹果软件后缀是啥(苹果手机软件的后缀名是什么)2024-12-01 14:54:08
  • 全屏图片