vue使用webuploader大文件分片上传完整代码

index.html


<!DOCTYPE html>

<html lang="">

  <head>

    <meta charset="utf-8">

  </head>

  <body>

    <noscript>

      <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>

    </noscript>

    <div id="app"></div>

    <!-- built files will be auto injected -->

  </body>

  <script src="<%= BASE_URL %>static/jquery-3.4.1.min.js"></script>

  <script src="<%= BASE_URL %>static/webuploader.min.js"></script>

</html>

uploader.vue

<template>

  <div>    

    <div>      

      <div id="filePicker">选择文件</div>

      <div class="file-panel">

        <h2>文件列表</h2>

        <div class="file-list">

          <ul class="file-item" :class="`file-${file.id}`" v-for="file in fileList">

            <li class="file-type" :icon="fileCategory(file.ext)"></li>

            <li class="file-name">{{file.name}}</li>

            <li class="file-size">{{fileSize(file.size)}}</li>

            <li class="file-status">上传中...</li>

            <li class="file-operate">

              <!--                          <a title="开始" @click="upload(file)"><Icon type="ios-play" /></a> -->

              <!--  <a title="暂停" @click="stop(file)"><Icon type="ios-pause" /></a> -->

              <a title="移除" @click="remove(file)">

                <Icon type="ios-trash" size='20' />

              </a>

            </li>

          </ul>

          <div class="no-file" v-if="!fileList.length"><i class="iconfont icon-empty-file"></i> 暂无待上传文件</div>


        </div>

      </div>

    </div>  

  </div>

</template>

<script>

  import { getToken } from "@/libs/util";

import config from "@/config";

// import {

//   deleteFile

// } from "@/api/project/file.js";

  export default {

    name: 'vue-upload',  

    props:{

      uploadType: {//在内容管理里文件下载或者视频上传中用到分片上传

      type: String,

      default: ""

    },


    },

    data() {

      return {

        timer: null,

        filepath: '', //上传文件后获得的导入文件地址

        fileList: [],

        url: process.env.NODE_ENV === 'development' ? (config.baseUrl.dev + '/api/UpLoadService/FPUploadFile/FPUploadFile') : (config.baseUrl.pro + '/api/UpLoadService/FPUploadFile/FPUploadFile'),

        uploader: null,

        accept: null,

        multiple: false,       

        fileSingleSizeLimit: 2048000,

        fileNumLimit: 1,

        importpercent: 0,

        connection: Object,

        currentStep: 0,

        errorkey:''

      };

    },

    created() {},

    mounted() {

      this.$nextTick(() => {

        this.initWebUpload();

      });

    },

    methods: {

      initWebUpload() {

        let  formData={uploadType:this.uploadType,};

        console.log(this.url+'=======')

        this.uploader = WebUploader.create({

          auto: true, // 选完文件后,是否自动上传

          swf: './static/Uploader.swf', // swf文件路径

          server: this.url, // 文件接收服务端

          pick: "#filePicker", //this.uploadButton,     // 选择文件的按钮

          accept: {

              title: 'All',

              exteensions: 'doc,docx,xls,xlsx,ppt,pptx,pdf,txt,wps,mp4,mp3,jpg,jpeg,png,rm,avi,mpeg,ogg,dwg',

              mimeTypes: '.doc,docx,.xls,.xlsx,.ppt,.pptx,.pdf,.txt,.wps,.mp4,.map3,.jpg,.jpeg,.png,.rm,.avi,.mpeg,.ogg,.dwg'

            },  // 允许选择文件格式。

          threads: 1,

          fileNumLimit: (this.uploadType=="download")?undefined:1, // 限制上传个数

          //fileSingleSizeLimit: this.fileSingleSizeLimit, // 限制单个上传图片的大小

          formData: formData,  // 上传所需参数

          chunked: true, //分片上传

          chunkSize: 2048000, //分片大小

          //duplicate: true,  // 重复上传

          fileVal: new Date().getTime(),

          resize: false,

          compress:false//是否压缩图片,默认true

        });

        this.uploader.refresh()

        // 当有文件被添加进队列的时候,添加到页面预览

        this.uploader.on('fileQueued', (file) => {

          if (!file.size) return;

          this.fileList.push(file);

        });

        this.uploader.on('uploadStart', (file) => {

          // 在这里可以准备好formData的数据

          //this.uploader.options.formData.key = this.keyGenerator(file);

        });

        this.uploader.on('uploadBeforeSend', (obj,data,headers) => {

          // 当某个文件的分块在发送前触发

          $.extend(headers,{"Authorization": "Bearer " + getToken(),"RuntoAccessType": "Endpoint"})

       //  headers  = {RuntoAccessType: "Endpoint"}

        });

        // 文件上传过程中创建进度条实时显示。

        this.uploader.on('uploadProgress', (file, percent) => {

          $(`.file-${file.id} .progress`).css('width', percent * 100 + '%');

          $(`.file-${file.id} .file-status`).html((percent * 100).toFixed(2) + '%');

        });

        this.uploader.on('uploadSuccess', (file, response) => {  

          if(response.Code==200){           

            let info=response.Data[0];

            let idx=this.fileList.findIndex(item=>item.name.split('.')[0]==info.FileName);

            this.fileList[idx]=Object.assign({},this.fileList[idx],info)

            this.$emit('upload',response.Data);

          }else{

            //this.$Message.error(response.Message)

            this.$Notice.error({

                    title: '上传失败',

                    desc: response.Message

                });

          }

          //this.filepath = response.data.remoteUrl

          //给后台发送合并请求

        });

        this.uploader.on('uploadError', (file, reason) => {    

          this.$emit('uploadError', file, reason);

          alert(this.res)

        });

        this.uploader.on('error', (type) => {

          let errorMessage = '';

          if (type === 'F_EXCEED_SIZE') {

            errorMessage = `文件大小不能超过${this.fileSingleSizeLimit / (1024 * 1000)}M`;

          } else if (type === 'Q_EXCEED_NUM_LIMIT') {

            errorMessage = '文件上传已达到最大上限数';

          } else {

            errorMessage = `上传出错!请检查后重新上传!错误代码${type}`;

          }         

          this.$emit('error', errorMessage);

        });

        this.uploader.on('uploadComplete', (file, response) => {

          this.$emit('complete', file, response);

        });

      },

      upload(file) {

        this.uploader.upload(file);

      },

      /*  stop(file) {

           this.uploader.stop(file);

       }, */

      // 取消并中断文件上传

      cancelFile(file) {

        this.uploader.cancelFile(file);

      },

      // 在队列中移除文件

      removeFile(file, bool) {

        this.uploader.removeFile(file, bool);

      },


      remove(file) {     


        // 在ui上移除

        let index = this.fileList.findIndex(ele => ele.id === file.id);  

        if(this.fileList[index].Id){

          let id=this.fileList[index].Id;

          // deleteFile({ id }).then(res => {

          //   if(res.data.Code==200){

          //     this.$Message.success("删除成功!");   

          //      this.fileList.splice(index, 1);   

          //      this.$emit('delete',id);        

          //   }else{

          //     this.$Message.error(res.data.Message)

          //   }

          // });

        }else{

          //取消并中断文件上传

        this.uploader.cancelFile(file);

        // 在队列中移除文件

        this.uploader.removeFile(file, true);

          this.fileList.splice(index, 1);

        }   

      },

      fileSize(size) {

        return WebUploader.Base.formatSize(size);

      },

      fileCategory(ext) {

        let type = '';

        const typeMap = {

          image: [ 'jpg', 'jpeg', 'png',"dwg"],

          video: [ "mp3","rm","avi","mp4","mpeg","ogg",],

          text: ['doc', 'txt', 'docx', 'pdf',  'xls', 'xlsx', 'ppt', 'pptx',"wps",]

        };

        Object.keys(typeMap).forEach((_type) => {

          const extensions = typeMap[_type];

          if (extensions.indexOf(ext) > -1) {

            type = _type

          }

        });

        return type

      },      

    },

    beforeDestroy() {

      this.uploader.destroy();

    },

    watch: {

    uploadType(val) {      

      this.uploader.destroy();

      this.initWebUpload();

    },

    }

  };

</script>

<style lang='less'>

  @h-row: 50px;

  .file-panel {

    width: 840px;

    margin-top: 10px;

    box-shadow: 0 2px 12px 1px rgba(0, 0, 0, 0.1);

    >h2 {

      height: 40px;

      line-height: 40px;

      padding: 0 10px;

      border-radius: 4px 4px 0 0;

      border-bottom: 1px solid #ccc;

      background-color: #fff;

    }

    .file-list {

      position: relative;

      height: 360px;

      overflow-y: auto;

      background-color: rgb(250, 250, 250);

    }

    .file-item {

      position: relative;

      height: @h-row;

      line-height: @h-row;

      padding: 0 10px;

      border-bottom: 1px solid #ccc;

      background-color: #fff;

      z-index: 1;

      >li {

        display: inline-block;

      }

    }

    .file-type {

      width: 24px;

      height: 24px;

      vertical-align: -5px;

    }

    .file-name {

      width: 40%;

      margin-left: 10px;

    }

    .file-size {

      width: 20%;

    }

    .file-status {

      width: 20%;

    }

    .file-operate {

      width: 10%;

      >a {

        padding: 10px 5px;

        cursor: pointer;

        color: #666;

        &:hover {

          color: #ff4081;

        }

      }

    }

    .file-type[icon=text] {

      background: url(../../assets/admin/text-icon.png);

    }

    .file-type[icon=video] {

      background: url(../../assets/admin/video-icon.png);

    }

    .file-type[icon=image] {

      background: url(../../assets/admin/image-icon.png);

    }

    .progress {

      position: absolute;

      top: 0;

      left: 0;

      height: @h-row - 1;

      width: 0;

      background-color: #E2EDFE;

      z-index: -1;

    }

    .no-file {

      position: absolute;

      top: 50%;

      left: 50%;

      transform: translate(-50%, -50%);

      font-size: 16px;

    }

  }

  .webuploader-container {

    position: relative;

  }

  .webuploader-element-invisible {

    position: absolute !important;

    clip: rect(1px 1px 1px 1px);

    /* IE6, IE7 */

    clip: rect(1px, 1px, 1px, 1px);

  }

  .webuploader-pick {

    position: relative;

    display: inline-block;

    cursor: pointer;

    background: #00b7ee;

    padding: 10px 15px;

    color: #fff;

    text-align: center;

    border-radius: 3px;

    overflow: hidden;

  }

  .webuploader-pick-hover {

    background: #00a2d4;

  }

  .webuploader-pick-disable {

    opacity: 0.6;

    pointer-events: none;

  }

  .download {

    margin-bottom: 10px;

  }

  .next {

    float: right;

  }

</style>

使用:

import FPUploader from "@/components/webUploader/uploader";

<FPUploader

            v-if="modal.show"

            style="margin-top:10px;"

            uploadType="video"           

          />

文件地址
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容