最近在公司项目中使用到了el-upload,但是在对上传的文件做大小限制或者格式限制时,发现before-upload方法并不生效,查阅资料后发现:因为 before-upload 是指在文件上传之前、文件已被选中,但还没上传的时候触发,而设置了 :auto-upload=“false” 后,文件上传事件不被再次调用,,所以 before-upload 不生效,所以,限制图片大小和格式的时候,需绑定在 :on-change 里面,这样限制就生效了。
<el-upload
class="upload-demo"
ref="upload"
action
:on-remove="handleRemove"
:file-list="fileList"
:auto-upload="false"
:before-upload="beforeUpload"
:on-change="handleChange"
>
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;
}
},