当前位置:   article > 正文

elementui多选上传 before-upload 格式效验错误总会触发before-remove (elementui多选上传on-success只执行了一次,只上传成功了一条)

elementui多选上传 before-upload 格式效验错误总会触发before-remove (elementui多选上传on-success只执行了一次,只上传成功了一条)

今天鹏仔项目中使用elementui做一个批量上传附件时,遇到了以下问题,那么顺便分享一下解决方案。

问题
通过elementui的 :before-upload="beforeAvatarUpload" (上传文件之前的钩子)

  1. beforeAvatarUpload(file) {
  2. const isJPG = file.type === 'image/jpeg';
  3. const isJPG2 = file.type === 'image/jpg';
  4. const isPNG = file.type === 'image/png';
  5. const isPNG2 = file.type === 'image/bmp';
  6. const isPDF = file.type === 'application/pdf';
  7. const isLt5M = file.size / 1024 / 1024 < 5;
  8. if (!isJPG && !isJPG2 && !isPNG && !isPNG2 && !isPDF) {
  9. this.$message.warning('只支持bmp、jpg、png、pdf格式');
  10. return Promise.reject(isJPG || isJPG2 || isPNG || isPNG2 || isPDF);
  11. }
  12. if (!isLt5M) {
  13. this.$message.warning('请上传5MB以内的文件!');
  14. return Promise.reject(isLt5M);
  15. }
  16. this.loading = true;
  17. return (isJPG || isJPG2 || isPNG || isPNG2 || isPDF) && isLt5M;
  18. },

当上传文件为其他格式,效验格式错误时,总会触发 :before-remove="beforeRemove" (删除文件之前的钩子)

  1. beforeRemove(file, fileList) {
  2. return this.$confirm(`确定移除 ${ file.name }?`);
  3. },

解决方法
我们只需在 :before-remove="beforeRemove" 事件时判断下当前文件是否为成功的附件即可。

  1. beforeRemove(file, fileList) {
  2. if(file && file.status == 'success'){
  3. return this.$confirm(`确定移除 ${ file.name }?`);
  4. }
  5. },

还有个问题,就是多选文件上传成功时 :on-success="handleAvatarSuccess" (文件上传成功时的钩子) 此方法只会执行一次,多个文件只push到了一条数据。

网上说是把 return false 改为 return Promise.reject(false) 但是我尝试了,还是不起作用!

最终方案如下所示(等所有上传请求完成后,再给fileList进行push赋值)

  1. handleAvatarSuccess(res, file, fileList){
  2. if(fileList.every(it => it.status == 'success')) {
  3. fileList.map(item => {
  4. item.response && this.fileList.push({name:item.name,url:item.response.data,fileName:item.name,fileUrl:item.response.data});
  5. })
  6. }
  7. }

原文 elementui多选上传 before-upload 格式效验错误总会触发before-remove (elementui多选上传on-success只执行了一次,只上传成功了一条)

鹏仔前端 www.pjxi.com

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/186942
推荐阅读
相关标签
  

闽ICP备14008679号