elmentui的文件上传,当文件全部上传完毕的钩子是什么
时间: 2023-12-20 14:36:31 浏览: 17
使用拷贝钩子监控文件的读写操作
在 Element UI 中,文件上传组件的全部文件上传完毕的钩子是 `on-success`。通过监听该事件,您可以在文件上传完成后执行相应的操作。
以下是一个示例代码:
```html
<el-upload
action="/upload"
:on-success="handleSuccess"
:auto-upload="false"
>
<el-button slot="trigger" size="small" type="primary">选取文件</el-button>
<el-button size="small" type="success" @click="upload">上传到服务器</el-button>
</el-upload>
```
```javascript
methods: {
handleSuccess(response, file, fileList) {
// 文件上传成功的处理逻辑
},
upload() {
// 手动触发文件上传
this.$refs.upload.submit();
}
}
```
在上述示例中,`handleSuccess` 方法会在文件上传成功后被调用,您可以在该方法中编写处理上传成功的逻辑。`upload` 方法用于手动触发文件上传,点击 "上传到服务器" 按钮时会调用该方法。
阅读全文