IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> vue配合webuploader分片上传 -> 正文阅读

[JavaScript知识库]vue配合webuploader分片上传

vue配合webuploader分片上传
啥也不说,献上代码
封装upload.vue:

<template>
  <div class="upload"></div>
</template>

<script>
import WebUploader from ".././../../../static/js/webuploader.min";
import { httpUrl } from "../../../api/http_url";
import { v4 as uuidv4 } from "uuid";
import md5 from "js-md5";
export default {
  name: "vue-upload",
  props: {
    accept: {
      type: Object,
      default: null
    },
    // 上传地址
    url: {
      type: String,
      default: httpUrl.fenP
    },
    // 上传最大数量 默认为100
    fileNumLimit: {
      type: Number,
      default:1000000
    },
    // 大小限制 默认2M
    fileSingleSizeLimit: {
      type: Number,
      default: 5 * 1024 * 1024
    },
    // 上传时传给后端的参数,一般为token,key等
    formData: {
      type: Object,
      default: {
        // md5:this.uploader.md5File( files )
        md5: null
      }
    },
    // 生成formData中文件的key,下面只是个例子,具体哪种形式和后端商议
    // keyGenerator: {
    //   type: Function,
    //   default(file) {
    //     const currentTime = new Date().getTime();
    //     const md5 = md5(file.name)
    //     return md5;
    //   }
    // },
    multiple: {
      type: Boolean,
      default: true
    },
    // 上传按钮ID
    uploadButton: {
      type: String,
      default: httpUrl.fenP
    },
   
    
  },
  data() {
    return {
      uploader: null,
      md5: null,
      imgAideo:[]
    };
  },
  mounted() {
    this.initWebUpload();
  },

  methods: {

    initWebUpload() {
      // var md5 = uuidv4();
      // this.formData.md5 = md5;
      // sessionStorage.setItem("md5", md5);
   const _this = this
      this.uploader = WebUploader.create({
        auto: true, // 选完文件后,是否自动上传
        swf: "/static/lib/webuploader/Uploader.swf", // swf文件路径
        server: this.url, // 文件接收服务端
        pick: {
          id: this.uploadButton, // 选择文件的按钮
          multiple: this.multiple, // 是否多文件上传 默认false
          label: ""
        },
        accept: this.getAccept(this.accept), // 允许选择文件格式。
        threads:1,
        fileNumLimit: this.fileNumLimit, // 限制上传个数
        //fileSingleSizeLimit: this.fileSingleSizeLimit, // 限制单个上传图片的大小
        formData: this.formData, // 上传所需参数
        chunked: true, //分片上传
        chunkSize: this.fileSingleSizeLimit, //分片大小
        resize : false,  
        duplicate: true // 重复上传
      });

      // 当有文件被添加进队列的时候,添加到页面预览
      this.uploader.on("fileQueued", file => {
        this.$emit("fileChange", file);
        
      });

      this.uploader.on("uploadStart", file => {
        // 在这里可以准备好formData的数据
        this.uploader.options.formData.md5 = md5(file.name);
      });

      // 文件上传过程中创建进度条实时显示。
      this.uploader.on("uploadProgress", (file, percentage) => {
        this.$emit("progress", file, percentage);
      });

      this.uploader.on("uploadSuccess", (file, response) => {
        this.$emit("success", file, response);
      });

      this.uploader.on("uploadError", (file, reason) => {
        console.error(reason);
        this.$emit("uploadError", file, reason);
      });

      this.uploader.on("error", type => {
        let errorMessage = "";
        if (type === "F_EXCEED_SIZE") {
          this.$message.error(
            `文件大小不能超过${this.fileSingleSizeLimit / (1024 * 1000)}M`
          );
        } else if (type === "Q_EXCEED_NUM_LIMIT") {
          this.$message.error("文件上传已达到最大上限数");
        } else {
          this.$message.error(`上传出错!请检查后重新上传!错误代码${type}`);
        }

        console.error(errorMessage);
        this.$emit("error", errorMessage);
      });

      this.uploader.on("uploadComplete", (file, response) => {
          this.$emit("finshed", file);
      });

     
    },
    

    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);
    },

    getAccept(accept) {
      switch (accept) {
        case "video":
          return {
            title: "Videos",
            exteensions: "mp4,mp3,avi",
            mimeTypes: ".mp4,.mp3,.avi"
          };
          break;
        case "image":
          return {
            title: "Images",
            exteensions: "gif,jpg,jpeg,bmp,png,webp,jfif",
            mimeTypes: ".gif,.jpg,.jpeg,.bmp,.png,.webp,.jfif"
          };
          break;
        default:
          return accept;
      }
    }
  }
};
</script>

<style  scoped>
</style>


父组件:

import vueUpload from “./upload”;//组件
import WebUploader from “…/…/…/…/static/js/webuploader.min”;
mounted() {
setTimeout(() => {
document.getElementsByClassName(
“webuploader-element-invisible”
)[0].style.display = “none”;
}, 10);
},
computed: {
uploader() {
return this.$refs.uploader;
}
},

components: {
vueUpload,
uploader() {
return this.$refs.uploader;
}
},

//调取方法
fileChange(file) {
this.fileList.push(file);
},
onProgress(file, percent) {
if (this.imgs.length > 8) {
this.loading = false;
} else {
this.loading = true;
}
},
onSuccess(file, response) {
this.getImg(file);
},

getImg(file) {
  if (this.imgs.length > 8) {
    this.$message.error("最多可上传9张");
    this.loading = false;
  } else {
    var qs = require("qs");
    var a = md5(file.name);

    this.$axios
      .post(
        httpUrl.merge,
        qs.stringify({
          md5: a,
          fileName: a + "." + file.ext
        })
      )
      .then(res => {
        this.loading = false;
        if (res.data.code == 1) {
          this.$message.success("上传成功");
          this.imgs.push({
            img: res.data.data,
            id: file
          });
         
        } else {
          this.loading = false;
          this.$message.error(res.data.msg_cn);
        }
      });


     
  }
},

fileSize(size) {
  return WebUploader.Base.formatSize(size);
},
fileCategory(ext) {
  let type = "";
  const typeMap = {
    image: ["gif", "jpg", "jpeg", "png", "bmp", "webp", "jfif"],
    video: ["mp4", "mp3", "avi"],
    text: []
  };
  Object.keys(typeMap).forEach(_type => {
    const extensions = typeMap[_type];
    if (extensions.indexOf(ext) > -1) {
      type = _type;
    }
  });
  return type;
},

官方文档:http://fex.baidu.com/webuploader/document.html
里面都有方法介绍哦,代码中httpUrl.fenp是后台分片接口哦,httpUrl.merge是后台合并上传哦
不详细,仅供参考,生活不易,小杨叹气!

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-30 18:14:48  更:2022-03-30 18:18:47 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 4:37:50-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码