Vue中关于ElementUI上传组件Upload的整理
一、概要
ElementUI为我们提供了上传组件Upload:(以下功能 ElementUI官网 均有演示)
- 可以使用 drag 设置点击或者拖拽上传文件。
- 可以通过 slot 自定义的上传按钮类型和文字提示。
- 可以通过 limit 和 on-exceed 限制上传文件的个数和定义超出限制时的行为
- 可以通过 before-remove 来阻止文件移除操作。
- 可以通过 before-upload 限制用户上传的图片格式和大小。
- 可以使用 list-type 属性来设置文件列表的样式。
- 可以使用 scoped-slot 去设置缩略图模版。
- 可以通过 on-change 钩子函数来对列表进行控制。
- 可以使用 scoped-slot 去设置缩略图模版。
二、功能梳理
要想学会一个组件怎么使用,首先要了解它的组成,一个组件的组成无非四种类型:
属性(Attribute)、方法(Methods)、事件(Event)、插槽(Slot)。
1、Attribute
参数 | 说明 | 类型 | 默认值 |
---|
action | 请求地址(必选) | String | — |
name | 请求字段名 | String | file |
headers | 请求头 | Object | — |
data | 请求额外参数 | Object | — |
with-credentials | 支持发送 cookie 凭证信息 | Boolean | false |
http-request | 自定义上传 | Function | — |
参数 | 说明 | 类型 | 默认值 |
---|
accept | 接受上传的文件类型(thumbnail-mode 模式下此参数无效) | String | — |
multiple | 是否支持多选文件 | Boolean | — |
limit | 最大允许上传个数 | Number | — |
show-file-list | 是否显示已上传文件列表 | Boolean | true |
file-list | 上传的文件列表, 例如: [{name: ‘food.jpg’, url: ‘https://xxx.cdn.com/xxx.jpg’}] | Array | —[] |
list-type | 文件列表的类型(text/picture/picture-card) | String | —text |
drag | 是否启用拖拽上传 | Boolean | false |
auto-upload | 是否在选取文件后立即进行上传 | Boolean | true |
disabled | 是否禁用 | Boolean | true |
参数 | 说明 | 类型 | 默认值 |
---|
on-preview | 点击文件列表中已上传的文件时的钩子 | function(file) | — |
before-remove | 删除文件之前的钩子,参数为上传的文件和文件列表,若返回 false 或者返回 Promise 且被 reject,则停止删除。 | function(file, fileList) | — |
on-remove | 文件列表移除文件时的钩子 | function(file, fileList) | — |
before-upload | 上传文件之前的钩子,参数为上传的文件,若返回 false 或者返回 Promise 且被 reject,则停止上传。 | function(file) | — |
on-progress | 文件上传时的钩子 | function(event, file, fileList) | — |
on-success | 文件上传成功时的钩子 | function(response, file, fileList) | — |
on-error | 文件上传失败时的钩子 | function(err, file, fileList) | — |
on-change | 文件状态改变时的钩子,添加文件、上传成功和上传失败时都会被调用 | function(file, fileList) | — |
on-exceed | 文件超出个数限制时的钩子 | function(files, fileList) | — |
2、Methods
方法 | 说明 | 参数 |
---|
clearFiles | 清空已上传的文件列表(该方法不支持在 before-upload 中调用) | — |
abort | 取消上传请求 | ( file: fileList 中的 file 对象 ) |
submit | 手动上传文件列表 | — |
3、Slot
name | 说明 |
---|
trigger | 触发文件选择框的内容 |
tip | 提示说明文字 |
三、代码示例
<div>
<el-upload
ref="upload"
:action="action"
:name="name"
:headers="headers"
:data="data"
:with-credentials="withCredentials"
:accept="accept"
:multiple="multiple"
:limit="limit"
:show-file-list="showFileList"
:file-list="fileList"
:list-type="listType"
:drag="drag"
:auto-upload="autoUpload"
:disabled="disabled"
:on-preview="handlePreview"
:before-remove="beforeRemove"
:on-remove="handleRemove"
:before-upload="beforeUpload"
:on-progress="handleProgress"
:on-success="handleSuccess"
:on-error="handleError"
:on-change="handleChange"
:on-exceed="handleExceed"
>
<el-button size="small" type="primary">点击上传</el-button>
<div slot="trigger">触发文件选择框的内容</div>
<div slot="tip" class="el-upload__tip">提示说明文字(例如:只能上传jpg/png文件,且不超过500kb</div>
</el-upload>
<el-upload :http-request="httpRequest" />
<el-button size="small" type="primary" @click="emitMethods">实例方法</el-button>
</div>
export default {
name: 'Demo',
data() {
return {
action: '',
name: 'file',
headers: {},
data: {},
withCredentials: false,
accept: '',
multiple: true,
limit: 3,
showFileList: true,
fileList: [],
listType: 'text',
drag: false,
autoUpload: true,
disabled: true
}
},
methods: {
httpRequest() {
},
handlePreview(file) {
console.log(file)
},
beforeRemove(file, fileList) {
console.log(file, fileList)
return this.$confirm(`确定移除 ${file.name}?`)
},
handleRemove(file, fileList) {
console.log(file, fileList)
},
beforeUpload(file) {
console.log(file)
},
handleProgress(event, file, fileList) {
console.log(event, file, fileList)
},
handleSuccess(response, file, fileList) {
console.log(response, file, fileList)
this.$message.success('上传成功!')
},
handleError(err, file, fileList) {
console.log(err, file, fileList)
this.$message.error('上传失败!')
},
handleChange(file, fileList) {
console.log(file, fileList)
},
handleExceed(files, fileList) {
this.$message.warning(`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`)
},
emitMethods() {
this.$refs.upload.clearFiles()
this.$refs.upload.abort()
this.$refs.upload.submit()
}
}
}
参考文档