vue3 ts 环境下 element-plus el-upload 中 on-success的用法
时间: 2023-09-13 16:13:53 浏览: 911
在 Vue3 TypeScript 环境下使用 Element Plus 的 el-upload 组件,可以通过 on-success 属性来监听上传成功的事件,具体用法如下:
1. 安装 Element Plus
首先需要安装 Element Plus,可以使用以下命令:
```
npm install element-plus --save
```
2. 引入 el-upload 组件
在需要使用 el-upload 组件的页面或组件中,先引入 el-upload 组件:
```
import { defineComponent } from 'vue';
import { ElUpload } from 'element-plus';
```
3. 使用 el-upload 组件
在模板中使用 el-upload 组件,并设置 on-success 属性:
```
<template>
<div>
<el-upload
class="upload-demo"
action="/upload"
:on-success="handleSuccess"
>
<el-button size="small" type="primary">点击上传</el-button>
</el-upload>
</div>
</template>
```
在上面的代码中,我们设置了 action 属性为 "/upload",表示上传文件的地址。同时,我们设置了 on-success 属性为 handleSuccess 方法,表示上传成功后要执行的回调函数。
4. 定义 handleSuccess 方法
在组件中定义 handleSuccess 方法来处理上传成功后的逻辑:
```
<script lang="ts">
import { defineComponent } from 'vue';
import { ElUpload } from 'element-plus';
export default defineComponent({
components: {
ElUpload,
},
methods: {
handleSuccess(response: any, file: any, fileList: any) {
console.log(response, file, fileList);
// 处理上传成功后的逻辑
},
},
});
</script>
```
在 handleSuccess 方法中,我们可以通过 response 参数获取上传成功后服务器返回的数据,通过 file 参数获取上传的文件信息,通过 fileList 参数获取当前已上传的文件列表。
总结:
以上就是在 Vue3 TypeScript 环境下使用 Element Plus 的 el-upload 组件中 on-success 的用法。通过设置 on-success 属性并定义 handleSuccess 方法,可以监听上传成功的事件并处理相关逻辑。
阅读全文