共计 532 个字符,预计需要花费 2 分钟才能阅读完成。
** 问题形容:应用 elementPlus upload 组件上传文件,每次只能抉择一个文件,如果上传失败,再次点击上传按钮,没有反馈。
解决:清空已选文件列表,而后从新赋值。**
<el-upload
:action="uploadFileUrl+'?name='+(downloadFileName.name)"
:headers="accessToken"
:limit="1"
:format="['xls','xlsx']"
accept=".xls, .xlsx"
:show-file-list="true"
:auto-upload="false"
ref="uploadRef"
:on-success="handleSuccess"
:on-change="fileListChange"
>
咱们在 on-success 中解决
const handleSuccess = (response, file) => {
// 上传胜利当前
uploadRef.value.clearFiles() // 先删除抉择的文件
nextTick(() => {
// file 外面的 raw 就是 File 类型,间接复制给组件
uploadRef.value.handleStart(file.raw) // 从新赋值原来的文件
})
})
正文完