欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue-cli3.0+element-ui上传组件el-upload的使用

程序员文章站 2023-09-08 12:11:49
最近项目中涉及很多文件上传的地方,然后文件上传又有很多限制。比如文件大小限制,文件个数限制,文件类型限制,文件上传后的列表样式自定义,包括上传进度条等问题。下面是我对ele...

最近项目中涉及很多文件上传的地方,然后文件上传又有很多限制。比如文件大小限制,文件个数限制,文件类型限制,文件上传后的列表样式自定义,包括上传进度条等问题。下面是我对element-ui的上传组件的一些改造, 点击查看源码。

我是自己维护了一个列表数据,再对这个列表数据进行一些操作,没用组件自带的。先看看我的组件模版

<template>
 <el-upload
  class="upload-demo"
  :limit="limit"
  :action="action"
  :accept="accept"
  :data="data"
  :multiple="multiple"
  :show-file-list="showfilelist"
  :on-exceed="handleexceed"
  :with-credentials="withcredentials"
  :before-upload="handlebeforeupload"
  :on-progress="handleprogress"
  :on-success="handlesuccess"
  :on-error="handleerror">
  <el-button size="small" type="primary">上传</el-button>
 </el-upload>
</template>
limit: 限制文件个数
action:文件的上传地址(这里我没有特别封装axios,直接用默认的)
accept:接受上传的文件类型(字符串)
data:上传时附带的额外参数
multiple:多选(布尔类型,我这里设为true,即可以批量上传)
show-file-list:是否显示文件上传列表
with-credentials:是否携带cookie,布尔类型,true表示携带

这是我设置的一些初始值

vue-cli3.0+element-ui上传组件el-upload的使用

下面最重要的就是钩子函数了

vue-cli3.0+element-ui上传组件el-upload的使用

1、handleexceed是文件超出个数限制时的钩子
private handleexceed(files: any, filelist: any) {
  if (filelist.length > 20) {
   this.$message.error('最多允许上传20个文件');
   return false;
  }
 }
2、handlebeforeupload文件上传前的钩子,可以做一些拦截,return false,则停止上传
private handlebeforeupload(file: any) {
  // 文件大小限制
  const islt5m = file.size / 1024 / 1024 < 5;
  if (!islt5m) {
   this.$message.error('不得超过5m');
   return islt5m;
  }
  // 文件类型限制
  const name = file.name ? file.name : '';
  const ext = name
   ? name.substr(name.lastindexof('.') + 1, name.length)
   : true;
  const isext = this.accept.indexof(ext) < 0;
  if (isext) {
   this.$message.error('请上传正确的格式类型');
   return !isext;
  }
  // 大小和类型验证都通过后,给自定义的列表中添加需要的数据
  this.objadditem(this.temparr, file);
 }
3、handleprogress文件上传时的钩子,更新进度条的值
private handleprogress(event: any, file: any, filelist: any) {
  this.temparr.foreach((element: any, index: number) => {
   if (element.uid === file.uid) {
    // 更新这个uid下的进度
    const progress = math.floor(event.percent);
    // 防止上传完接口还没有返回成功值,所以此处给定progress的最大值为99,成功的钩子中再置为100
    element.progress = progress === 100 ? 99 : progress;
    this.$set(this.temparr, index, element);
    this.$emit('changefilelist', this.temparr);
   }
  });
 }
4、handlesuccess文件上传成功时的钩子
private handlesuccess(response: any, file: any, filelist: any) {
  this.temparr.foreach((element: any, index: number) => {
   if (element.uid === file.uid) {
    element.progress = 100;
    // element.url为下载地址,一般后端人员会给你返回
    // 我这边为了做后面的下载,先写死链接供测试
    element.url = 'http://originoo-1.b0.upaiyun.com/freepic/3226433.jpg!freethumb';
    this.$message.success('文件上传成功');
    this.$set(this.temparr, index, element);
    this.$emit('changefilelist', this.temparr);
   }
  });
  // response是后端接口返回的数据,可以根据接口返回的数据做一些操作
  // 示例
  // const bizcode = response.rspresult.bizcode;
  // switch (bizcode) {
  //  case 200:
  //   this.temparr.foreach((element: any, index: number) => {
  //    if (element.uid === file.uid) {
  //     element.progress = 100;
  //     element.url = response.data.url; // 这是后端人员给我返回的下载地址
  //     this.$message.success('文件上传成功');
  //     this.$set(this.temparr, index, element);
  //     this.$emit('changefilelist', this.temparr);
  //    }
  //   });
  //   break;
  //  default:
  //   this.temparr.foreach((element: any, index: number) => {
  //    if (element.uid === file.uid) {
  //     this.temparr.splice(index, 1); // 上传失败删除该记录
  //     this.$message.error('文件上传失败');
  //     this.$emit('changefilelist', this.temparr);
  //    }
  //   });
  //   break;
  // }
 }
5、handleerror文件上传失败时的钩子
private handleerror(err: any, file: any, filelist: any) {
  this.temparr.foreach((element: any, index: number) => {
   if (element.uid === file.uid) {
    this.temparr.splice(index, 1); // 上传失败删除该记录
    this.$message.error('文件上传失败');
    this.$emit('changefilelist', this.temparr);
   }
  });
 }
添加数据函数
private objadditem(temparr: any[], file: any) {
  const tempobj = {
   uid: file.uid, // uid用于辨别文件
   originalname: file.name, // 列表显示的文件名
   progress: 0, // 进度条
   code: 200, // 上传状态
  };
  temparr.push(tempobj);
  this.$emit('changefilelist', temparr);
 }
上传的文件下载封装
private downloadfilefun(url: any) {
  const iframe: any = document.createelement('iframe') as htmliframeelement;
  iframe.style.display = 'none'; // 防止影响页面
  iframe.style.height = 0; // 防止影响页面
  iframe.src = url;
  document.body.appendchild(iframe); // 这一行必须,iframe挂在到dom树上才会发请求
  // 5分钟之后删除(onload方法对于下载链接不起作用,就先抠脚一下吧)
  settimeout(() => {
   iframe.remove();
  }, 5 * 60 * 1000);
 }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。