el-upload详解
<el-upload
class="upload-demo"
action="/act/action"
:on-preview="handlePreview"
:on-remove="handleRemove"
:before-remove="beforeRemove"
multiple
:limit="3"
:on-exceed="handleExceed"
:file-list="fileList">
<el-button size="small" type="primary">点击上传</el-button>
<div slot="tip" class="el-upload__tip">只能上传jpg/png文件,且不超过500kb</div>
</el-upload>
参数说明
action --必选参数,上传的地址
headers --设置上传的请求头部
multiple --是否支持多选文件
data --上传时附带的额外参数
name --上传的文件字段名
with-credentials --支持发送 cookie 凭证信息
show-file-list --是否显示已上传文件列表
drag --是否启用拖拽上传
accept --接受上传的文件类型(thumbnail-mode 模式下此参数无效)
on-preview --点击文件列表中已上传的文件时的钩子 function(file)
on-remove --文件列表移除文件时的钩子 function(file, fileList)
on-success --文件上传成功时的钩子 function(response, file, fileList)
on-error --文件上传失败时的钩子 function(err, file, fileList)
on-progress --文件上传时的钩子 function(event, file, fileList)
on-change --文件状态改变时的钩子,添加文件、上传成功和上传失败时都会被调用
before-upload --上传文件之前的钩子,参数为上传的文件,若返回 false 或者返回 Promise 且被
reject,则停止上传。 function(file)
before-remove --删除文件之前的钩子,参数为上传的文件和文件列表,若返回 false 或者返回
Promise 且被 reject,则停止删除。 function(file, fileList) — —
list-type --文件列表的类型 string text/picture/picture-card
auto-upload --是否在选取文件后立即进行上传
file-list --上传的文件列表
http-request --覆盖默认的上传行为,可以自定义上传的实现
disabled --是否禁用
limit --最大允许上传个数
on-exceed --文件超出个数限制时的钩子 function(files, fileList)
文件上传例子
<template>
<el-dialog
title="上传"
:close-on-click-modal="false"
:append-to-body="true"
:visible.sync="visible">
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmit()" label-width="80px">
<el-form-item label="名称" prop="name">
<el-input v-model="dataForm.name" placeholder="名称"></el-input>
</el-form-item>
<el-form-item label="描述" prop="description">
<el-input v-model="dataForm.description" placeholder="描述"></el-input>
</el-form-item>
<el-form-item>
<el-upload
class="upload-demo"
action
:http-request="uploadFile"
:before-upload="beforeUpload"
name="file"
:headers="headers"
:data="uploadData"
:file-list="fileList">
<el-button size="small" type="primary">点击上传</el-button>
<div slot="tip" class="el-upload__tip">只能上传小于5M的文件</div>
</el-upload>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="visible = false">取消</el-button>
<el-button type="primary" @click="dataFormSubmit()">确定</el-button>
</span>
</el-dialog>
</template>
<script>
export default {
data () {
return {
visible: false,
dataForm: {
name: '',
description: ''
},
dataRule: {
name: [
{ required: true, message: '名称不能为空', trigger: 'blur' }
],
},
uploadUrl: '',
uploadData: {},
fileList:[],
headers: { "Content-Type": "multipart/form-data" },
file: null,
fileType: [ "pdf", "doc", "docx", "xls", "xlsx","txt","png","jpg", "bmp", "jpeg"]
}
},
methods: {
//初始化
init (url, uploadData) {
this.uploadUrl = url
this.uploadData = uploadData
this.visible = true
this.$nextTick(() => {
this.$refs['dataForm'].resetFields();
})
},
// 表单提交
dataFormSubmit () {
this.$refs['dataForm'].validate((valid) => {
if (valid) {
let FormDatas = new FormData()
FormDatas.append('file', this.file);
FormDatas.append("name", this.dataForm.name);
FormDatas.append("description", this.dataForm.description);
FormDatas.append("taskId", this.uploadData.taskId)
FormDatas.append("processInstanceId", this.uploadData.processInstanceId);
this.$http({
url: this.uploadUrl,
method: 'post',
headers: this.headers,
data: FormDatas
}).then(({data}) => {
if (data && data.code === 0) {
this.$message({
message: '上传成功',
type: 'success',
duration: 1500,
onClose: () => {
}
})
}
})
}
})
},
//上传文件之前
beforeUpload(file) {
if (file.type != "" || file.type != null || file.type != undefined){
//截取文件的后缀,判断文件类型
const FileExt = file.name.replace(/.+\./, "").toLowerCase();
//计算文件的大小
const isLt5M = file.size / 1024 / 1024 < 5; //这里做文件大小限制
//如果大于5M
if (!isLt5M) {
this.$message({
message: '上传文件大小不能超过 5MB!',
type: 'info'
});
return false;
}
//如果文件类型不在允许上传的范围内
if(this.fileType.includes(FileExt)){
return true;
}
else {
this.$message.error("上传文件格式不正确!");
return false;
}
}
},
//获取上传文件
uploadFile(item){
this.file = item.file
},
}
}
</script>
《中医之钥》