Vue开发之封装上传文件组件与用法示例
作者:guanguan0_0 时间:2024-05-10 14:09:44
本文实例讲述了Vue开发之封装上传文件组件与用法。分享给大家供大家参考,具体如下:
使用elementui的 el-upload插件实现图片上传组件
每个项目存在一定的特殊性,所以数据的处理会不同
pictureupload.vue:
<template>
<div class="pictureupload">
<el-upload
:action="baseUrl + '/api/public/image'"
list-type="picture-card"
:on-preview="handlePictureCardPreview"
:on-remove="handleRemove"
:file-list="fileList"
:on-exceed="handleExceed"
:before-remove="beforeRemove"
name="img"
:on-success="upLoadSuccess"
:data="upLoadData"
:headers="headers"
:limit="limit">
<i class="el-icon-plus"></i>
</el-upload>
<el-dialog :visible.sync="dialogVisible">
<img width="100%" :src="dialogImageUrl" alt="">
</el-dialog>
</div>
</template>
<script>
import { getToken } from "@/utils/auth";
import store from "@/store";
export default {
props: {
imgList: {
type: Array,
default: []
}, // 父组件传递的图片列表
limit: "" // 图片数量限制
},
data() {
return {
fileList: [],
upLoadData: {
img: ""
},
baseUrl: process.env.BASE_API,
dialogVisible: false,
dialogImageUrl: "",
headers: {
Authorization: store.getters.token_type + " " + store.getters.token
} // 接口调用token
};
},
watch: {
// 监听imgList的变化: fileList要求的格式为[{url: img}],所以监听imgList变化后将其进行处理,赋值给fileList
imgList: {
handler(newValue, oldValue) {
if(newValue.length === 0) {
this.fileList = [];
return;
}
for (let i = 0; i < newValue.length; i++) {
if (oldValue[i] != newValue[i]) {
this.fileList = [];
newValue.forEach(el => {
this.fileList.push({url: el})
})
return;
}
}
},
deep: true
}
},
methods: {
// 图片移除时处理数据
handleRemove(file, fileList) {
let item = [];
fileList.forEach(el => {
item.push(el.url);
});
this.$emit("removeimg", item);
},
handlePictureCardPreview(file) {
this.dialogImageUrl = file.url;
this.dialogVisible = true;
},
// 判断图片数量
handleExceed(files, fileList) {
this.$message.warning(`当前限制选择 ${this.limit} 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`);
},
beforeRemove(file, fileList) {},
// 上传图片成功事件
upLoadSuccess(response) {
this.$emit("uploadimg", response.message);
this.$message("上传成功",);
}
},
mounted() {
if (this.imgList.length != 0) {
this.imgList.forEach(el => {
this.fileList.push({ url: el });
});
}
}
};
</script>
使用上传图片组件:
<pictureupload @uploadimg="uploadimg" :imgList="ruleForm.img" :limit="3" @removeimg="removeimg"></pictureupload>
removeimg(item) {
this.ruleForm.img = item;
},
uploadimg(item) {
this.ruleForm.img.push(item);
},
希望本文所述对大家vue.js程序设计有所帮助。
来源:https://blog.csdn.net/guanguan0_0/article/details/80359578
标签:Vue,封装,上传文件组件
0
投稿
猜你喜欢
Oracle数据库集复制方法浅议
2023-07-16 16:33:49
HTML5 移动页面自适应手机屏幕宽度详解
2022-08-14 23:14:43
oracle的nvl函数的使用介绍
2023-07-19 14:42:20
python Django模板的使用方法(图文)
2022-03-30 04:23:52
python实现excel公式格式化的示例代码
2021-08-09 17:27:52
Oracle数据库url连接最后一个orcl代表的是配置的数据库SID
2024-01-26 12:38:12
如何在Python中用好短路机制
2022-04-23 16:56:42
如何利用Python实现简易的音频播放器
2022-07-16 11:47:32
MSSQL经典语句
2024-01-22 02:59:12
Swoole webSocket消息服务系统代码设计详解
2023-06-09 01:05:28
MySQL数据类型enum 枚举类型
2024-01-14 22:23:52
JS异步函数队列功能实例分析
2024-04-22 13:26:28
PS笔刷,样式,形状、渐变、滤镜载入方式及使用
2007-10-17 11:47:00
总结一些你可能不知道的ip地址
2022-11-30 15:15:58
Python中函数及默认参数的定义与调用操作实例分析
2022-01-15 05:16:31
Selenium Webdriver元素定位的八种常用方式(小结)
2022-08-11 10:04:07
PHP中最低级别的错误类型总结
2023-09-04 16:46:17
Python跨文件全局变量的使用技巧
2023-09-17 00:00:31
Python通过for循环理解迭代器和生成器实例详解
2022-08-23 14:34:59
基于Python实现的ID3决策树功能示例
2021-10-24 07:57:24