1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > el-upload 防止选择上传重复文件

el-upload 防止选择上传重复文件

时间:2020-08-31 22:28:43

相关推荐

el-upload 防止选择上传重复文件

<el-uploadref="uploadRef"multipledragaction="":auto-upload="false":file-list="msgPara.MsgFileList":on-change="handleFileChanged"><el-button type="primary">选择文件</el-button></el-upload>

const handleFileChanged = (file, fileList) => { // 检查是否有重复文件,有的话删除新选择的文件if(fileList.findIndex(f=>f.name===file.name)!=fileList.findLastIndex(f=>f.name===file.name)){ElMessage.info(file.name +" 文件已存在")fileList.pop()}msgPara.MsgFileList = fileListconsole.log(msgPara.MsgFileList)}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。