el-upload-list如何使用?
时间: 2023-10-13 15:28:40 浏览: 143
vue-cli3.0+element-ui上传组件el-upload的使用
5星 · 资源好评率100%
`<el-upload-list>` 是 Element UI 中的一个上传组件,用于展示已上传的文件列表。下面是一个简单的使用示例:
```html
<template>
<el-upload
class="upload-demo"
action="https://jsonplaceholder.typicode.com/posts/"
:on-success="handleSuccess"
:on-preview="handlePreview"
:on-remove="handleRemove"
:file-list="fileList"
list-type="picture"
:auto-upload="false"
multiple>
<el-button slot="trigger">选取文件</el-button>
<el-button style="margin-left: 10px;" type="primary" @click="submitUpload">上传到服务器</el-button>
<div slot="tip" class="el-upload__tip">只能上传jpg/png文件,且不超过500kb</div>
</el-upload>
<el-upload-list :deletable="true" :list-type="'picture-card'" :disabled="true" :items="fileList"></el-upload-list>
</template>
<script>
export default {
data() {
return {
fileList: []
}
},
methods: {
handleSuccess(response, file, fileList) {
console.log(response, file, fileList);
},
handlePreview(file) {
console.log(file);
},
handleRemove(file, fileList) {
console.log(file, fileList);
},
submitUpload() {
this.$refs.upload.submit();
}
}
}
</script>
```
在上面的示例中,我们通过 `:file-list` 属性将已上传的文件列表传递给 `<el-upload>` 组件,并在上传成功、预览、删除等事件中更新文件列表。然后,我们在页面中使用 `<el-upload-list>` 组件展示已上传的文件列表,通过 `:items` 属性将文件列表传递给组件即可。
需要注意的是,`<el-upload-list>` 组件只是一个展示已上传文件列表的组件,需要与 `<el-upload>` 组件一起使用。此外,我们也可以使用一些其他的属性,如 `:deletable` 控制是否显示删除按钮,`:disabled` 控制整个列表的可编辑性,`:list-type` 控制列表的样式等等。
阅读全文