Element UI库 之 el-upload 图片上传组件多次上传或重新上传失效bug

 

                  :show-file-list="false"

                  ref="upload"

                  :action="actionUrl"

                  :on-change="fileChange"

                  :multiple="false"

                  :limit="1"

                  :headers="header"

                  :on-error="handleAvatarErro"

                  :auto-upload="true"

                  :on-success="handleAvatarSuccess"

                  accept=".bmp,.jpg,.png"

                >

在:on-change方法即本文 fileChange方法中最尾端加上下面这句

   this.$refs.upload.clearFiles(); // 清空当前 files

即可正常使用

你可能感兴趣的:(前端,vue,elementui,vue.js,servlet)