在使用el-upload上传文件时,我们通常需要对上传文件的大小或者格式做限制,一般使用before-upload方法,但是今天在使用时,发现before-upload事件没有被触发。查阅资料后发现:因为 before-upload 是指在文件上传之前、文件已被选中,但还没上传的时候触发,而设置了 :auto-upload=“false” 后,文件上传事件不被再次调用,所以 before-upload 不生效,这种情况下,将判断代码写在 :on-change 事件中,限制就生效了。
1 2 3 4 5 6 7 8 9 |
<el-upload class="upload-demo" ref="upload" action :on-remove="handleRemove" :file-list="fileList" :auto-upload="false" :on-change="handleChange" > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
handleChange(file,fileList){ var FileExt=file.name.replace(/.+\./, ""); if(['png','jpg','jpeg'].indexOf(FileExt.toLowerCase())===-1){ this.$message({ type:"warning", message:"请上传.png .jpg .jpeg格式的文件" }); if(this.fileList.length<=0){ this.fileList=[]; }else{ this.fileList=fileList.slice(0,1); } return false; }else if(this.isLt10M==='0'){ this.$message({ type:"warning", message:"上传文件的大小不能超过10M" }); this.fileList=fileList.slice(0,1); return this.isLt10M==='1'?true:false; }else if(fileList.length>1){ this.$confirm("文件已存在,是否确定替换文件",{ confirmButtonText:"确定", cancelButtonText:"取消", showClose:false, type:"warning", }) .then(()=>{ this.fileList=fileList.slice(-1) }) .catch(()=>{ this.fileList=fileList.slice(0,1) }) }else{ this.fileList=fileList; } }, ———————————————— 版权声明:本文为CSDN博主「灬Saturday」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。 原文链接:https://blog.csdn.net/weixin_44867704/article/details/118896693 |