标签: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