码迷,mamicode.com
首页 > 其他好文 > 详细

vue + elementUI——upload传数据给后台出错后再次点击upload无效

时间:2020-06-12 10:49:48      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:change   hang   点击   lis   files   upload   vue   ima   load   

解决方法:使用upload.clearFiles()方法清空文件列表

页面:

 <el-upload
   ref="upload_file"
    action=""
    :multiple="false"
    :limit="1"
    :show-file-list="false"
    :on-change="importExcel"
    :auto-upload="false">
      <el-button
          :loading="btnLoading"
            type="primary">
            本地上传
        </el-button>
</el-upload>

js:

importExcel(response) {
        let _this = this;
        _this.$refs.upload_file.clearFiles();  // <==
        ···
}

 

vue + elementUI——upload传数据给后台出错后再次点击upload无效

标签:change   hang   点击   lis   files   upload   vue   ima   load   

原文地址:https://www.cnblogs.com/linjiangxian/p/13097903.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!