Vue Element upload组件和Iview upload 组件上传文件

今天要分享的是使用这俩个UI组件库的upload组件分别实现调用组件本身的上传方法实现和后台交互。接下来就是开车的时间,请坐稳扶好~

一、element upload组件传送门

1、html文件

html 复制代码
<el-upload ref="uploadRef" :action="uploadUrl" :data="dataObj" :multiple="true" :before-upload="beforeUpload"
	:on-success="handleSuccess" :auto-upload="false">
	<template #trigger>
		<el-button type="primary">文件选择
			<Icon type="md-arrow-round-up" />
		</el-button>
	</template>
	<el-button @click="submitUpload">确认上传
		<Icon type="md-arrow-round-up" />
	</el-button>
</el-upload>

注意事项: 使用组件本身的上传事件,必须加auto-upload属性设置为false;

beforeUpload方法除校验外,外层不允许返回return false;

2、js文件

javascript 复制代码
export default {
    methods: {
        beforeUpload(file) {
	        console.log("文件", file)
            // 上传文件接口额外参数
	        this.dataObj.businessCode = "ISSUEPOINT";
	        this.dataObj.salesType = "SALES12"
	        
	        const { name, size } = file;
            const index = name.lastIndexOf('.');
            // 判断文件名是否有后缀,没后缀文件错误
            if(index === -1) {
                this.$notify.error({
                    title: '错误',
                    message: '文件错误,请重新上传!',
                });
                return false;
            }
            const fileType = name.substr(index + 1);
            const acceptFileTypes = ['txt', 'zip', 'rar'];
            // 判断文件类型
            if(!acceptFileTypes.includes(fileType)) {
                this.$notify.error({
                    title: '错误',
                    message: '文件类型错误,请重新上传!',
                });
                return false;
            }
            // 判断文件大小
            if(size > 10*1024*1024) {
                this.$notify.error({
                    title: '错误',
                    message: '文件大小超过10M,请重新上传!',
                });
                return false;
            }

            this.fileLists.push(file)
        },
        submitUpload() {
            //使用ref调用组件本身的submit方法上传文件
	        this.$refs.uploadRef.submit()
        }
    }
}

二、iview upload 组件传送门

1、html文件

html 复制代码
<Upload ref="upload" :multiple="true" :action="uploadUrl" :data="fileUploadObj" :before-            
   upload="beforeUpload" :on-success="handleSuccess" :auto-upload="false" :show-upload- 
  list="false"
>
	<Button>选择文件
		<Icon type="md-arrow-round-up" />
	</Button>
</Upload>

注意:使用iview upload组件调取自身上传方法,beforeUpload方法必须要返回false,和element upload相反

2、js文件

javascript 复制代码
export default {
    methods: {
        beforeUpload(file) {
	        console.log("文件", file)
            // 上传文件接口额外参数
	        this.dataObj.businessCode = "ISSUEPOINT";
	        this.dataObj.salesType = "SALES12"
	        // 上传文件其他的校验方法
            let imgTypeArr = ["image/png", "image/jpg", "image/jpeg","image/gif"]
            let imgType = imgTypeArr.indexOf(file.type) !== -1
            if (!imgType) {
              this.$Message.warning({
                content:  '文件  ' + res.name + '  格式不正确, 请选择格式正确的图片',
                duration: 5

              });
              return false
            }

            // 控制文件上传大小
            let imgSize = localStorage.getItem('file_size_max');
            //获取缓存的文件大小限制字段
            let Maxsize = res.size  < imgSize;
            let fileMax = imgSize/ 1024 / 1024;
            if (!Maxsize) {
              this.$Message.warning({
                content: '文件体积过大,图片大小不能超过' + fileMax + 'M',
                duration: 5
              });
              return false
            }
            this.fileLists.push(file)
            //关键点
            return false
        },
        submitUpload() {
            //使用ref调用组件本身的post方法上传文件
	        let _this = this
			this.fileLists.forEach(n => {
				_this.$refs.upload.post(n)
			})
        }
    }
}

本次组件分享完毕,欢迎小伙伴组团交流~

相关推荐
一个很帅的帅哥10 小时前
实现浏览器的下拉加载功能(类似知乎)
开发语言·javascript·mysql·mongodb·node.js·vue·express
我是Superman丶10 小时前
【前端UI框架】VUE ElementUI 离线文档 可不联网打开
前端·vue.js·elementui
孟诸12 小时前
计算机专业毕设-校园新闻网站
java·vue·毕业设计·springboot·课程设计
乐~~~14 小时前
el-tabs 自适应高度
elementui·scss
Sca_杰1 天前
vue2使用npm引入依赖(例如axios),报错Module parse failed: Unexpected token解决方案
前端·javascript·vue
J总裁的小芒果2 天前
vue3-print打印eletable某一行的数据
javascript·vue.js·elementui
会有黎明吗2 天前
完整版订单超时自动取消功能
java·vue·rabbitmq
机器人迈克猫2 天前
Django_Vue3_ElementUI_Release_004_使用nginx部署
nginx·elementui·django
andy7_2 天前
多版本node管理工具nvm
vue
1234Wu2 天前
高德地图2.0 绘制、编辑多边形覆盖物(电子围栏)
前端·vue