前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Vue实现文件上传(带进度条和取消上传功能)

Vue实现文件上传(带进度条和取消上传功能)

原创
作者头像
前端小tips
修改2021-11-25 18:37:26
1.9K0
修改2021-11-25 18:37:26
举报
文章被收录于专栏:前端文章小tips前端文章小tips

代码实现

这里我只写了单一文件上传的demo,并且只限制了文件大小不能超过5M。如果想限制上传的文件类型,可自行在input标签中进行设置,如果想要实现多个文件一起上传,先要设置input标签属性multiple="multiple",然后利用循环将每一个文件数据存入到formData中,最后作为参数传给服务端进行处理。 因为个人习惯原因,我先对axios进行了封装,创建service.js文件,代码如下:

代码语言:javascript
复制
import axios from "axios"; //引入axios
const instance = axios.create({
  timeout: 300000,
});
// let baseURL = process.env.BASE_URL.toString();
//这里根据自己项目接口的位置自行设定
let baseURL = "http://1xx.1xx.1xx.1xx/hyr";
if (process.env.NODE_ENV == "production") {
  baseURL = "http://1xx.1xx.1xx.1xx/hyr";
}
instance.defaults.baseURL = baseURL; //baseURL用于自动切换本地环境接口和生产环境接口
instance.defaults.headers.post["Content-Type"] ="application/x-www-form-urlencoded;charset=UTF-8";
instance.defaults.headers.post["Access-Control-Allow-Origin"] = "*";
instance.defaults.withCredentials = false; // 携带cookie
//上传附件axios接口封装
const upload ={
  uploadFile(url, payload, cancelToken, cd) {
    return instance({
      url: url,
      method: "post",
      data: payload,
      onUploadProgress: function(progressEvent) {
        if (progressEvent.lengthComputable) {
          cd(progressEvent);
        }
      },
      cancelToken: cancelToken,
    });
  },
}
export {
  upload,
  axios,
}

在创建一个vue文件,将上述封装方法引入,代码如下:

代码语言:javascript
复制
<template>
  <div class="upload-file-box">
    <div class="input-line">
      <div class="input-title">
        <span class="name">附件上传:</span>
      </div>
      <label v-if="loading">
        <div class="ban-button icon-btn">
          <span>附件上传</span>
        </div>
      </label>
      <label for="files" v-else>
        <div class="upload-btn icon-btn">
          <span>附件上传</span>
        </div>
      </label>
      <input type="file" @change="changeFiles" class="files" id="files" />
    </div>
    <div class="limit-info">
      支持文件格式:常用文件格式,单个文件不能超过5Mb
    </div>
    <div class="input-line" v-show="loading">
      <div class="input-title">
        <span class="name">上传状态:</span>
      </div>
      <div class="loading-box">
        <div class="current-loading" :style="{ width: percent + '%' }"></div>
      </div>
      <div class="percent-val">{{ Math.round(percent) }}%</div>
      <div class="cancel-btn" @click="cancelUpload">取消</div>
    </div>
​
    <div class="file-state" v-show="loading">
      <div class="file-name">
        <span>{{ originalName }}</span>
      </div>
      <div class="state">
        <span>正在上传</span>
      </div>
    </div>
​
    <div class="file-state" v-show="complete">
      <div class="file-name">
        <a :href="filePath" target="_blank">{{ originalName }}</a>
      </div>
      <div class="state" v-show="!!filePath">
        <span>已完成</span>
      </div>
    </div>
  </div>
</template>
​
<script>
  import { upload } from "./service.js";
  import axios from 'axios'
  export default {
    data() {
      return {
        source: null,
        fileName: "",
        percent: 0,
        originalName: "",
        uploadState: false,
        filePath: "",
        loading: false,
        complete: false,
      }
    },
    methods: {
      changeFiles(e) {
        let files = e.srcElement.files;
        if (files && files.length) {
          if (files[0].size / 1024 / 1024 > 5) {
            alert("单个文件不能超过5MB");
            document.getElementById("files").value = null;
            return;
          }
          this.originalName = files[0].name;
          this.source = axios.CancelToken.source();
          let formData = new FormData();
          formData.append("file", files[0]);
          this.loading = true;
          this.complete = false;
          upload
            .uploadFile(
              "api/common/file/upload",
              formData,
              this.source.token,
              (progressEvent) => {
                let completeVal =
                  (progressEvent.loaded / progressEvent.total) * 100  || 0;
                this.percent = completeVal;
                this.uploadState = false;
              }
            )
            .then((res) => {
              if (res.data.status) {
                this.percent = 100;
                this.uploadState = true;
                this.filePath = res.data.resultBody.filePath;
                this.loading = false;
                this.complete = true;
              }else{
                alert("上传失败");
                this.loading = false;
                this.complete = false;
              }
            }).catch((thrown)=>{
              if(axios.isCancel(thrown)){
                alert("用户取消上传");
                this.loading = false;
                this.complete = false;
              }else{
                alert("其它错误异常");
              }
​
            });
        }
        document.getElementById("files").value = null;
      },
      cancelUpload() {
        //取消上传
        this.source.cancel("Operation canceled by the user.");
      },
    },
  }
</script>
​
<style lang="scss" scoped>
  .upload-file-box {
    padding-top: 30px;
    padding-left: 20px;
    .input-line {
      height: 40px;
​
      .input-title {
        float: left;
        line-height: 40px;
        font-size: 14px;
        text-align: right;
        width: 80px;
​
        .text {
          color: #666;
        }
      }
​
      .files {
        display: none;
      }
​
      .input {
        float: left;
        width: 400px;
        margin-left: 16px;
      }
​
      .icon-btn {
        margin-top: 5px;
        margin-left: 16px;
        float: left;
        height: 30px;
        line-height: 30px;
        padding-right: 10px;
        padding-left: 10px;
        background-color: #0099ff;
        border-radius: 5px;
        color: #fff;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.35s;
      }
​
      .upload-btn {
        &:hover {
          opacity: 0.8;
        }
      }
​
      .ban-button {
        cursor: not-allowed;
        background-color: #eeeff3;
      }
​
      .loading-box {
        margin-top: 15px;
        float: left;
        width: 270px;
        height: 10px;
        background-color: #f6f6f6;
        border-radius: 5px;
        margin-left: 15px;
​
        .current-loading {
          height: 10px;
          border-radius: 5px;
          background-color: #3399cc;
          /*width: 50%;*/
        }
      }
​
      .percent-val {
        line-height: 40px;
        width: 60px;
        text-align: center;
        font-size: 14px;
        color: #666;
        float: left;
      }
​
      .cancel-btn {
        line-height: 40px;
        font-size: 14px;
        color: #999;
        text-decoration: underline;
        cursor: pointer;
        user-select: none;
​
        &:hover {
          color: #3399CC;
        }
      }
​
      .del-btn {
        line-height: 40px;
        font-size: 14px;
        color: #999;
        text-decoration: underline;
        cursor: pointer;
        user-select: none;
​
        &:hover {
          color: #3399CC;
        }
      }
    }
​
    .limit-info {
      color: #999;
      font-size: 14px;
      padding-left: 96px;
      line-height: 34px;
      height: 34px;
    }
​
    .file-state {
      width: 270px;
      margin-left: 95px;
      overflow: hidden;
​
      .file-name {
        float: left;
        width: 210px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 14px;
        color: #999;
​
        a {
          color: #999;
          font-size: 14px;
          text-decoration: none;
​
          &:hover {
            color: #3399cc;
          }
        }
      }
​
      .state {
        float: right;
        font-size: 14px;
        color: #1db396;
      }
    }
  }
</style>

结束语

以上代码复制粘贴到自己的vue项目中就能够正常运行,如有错误或需要改进的地方还请与我联系,我将及时进行改正。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
作者已关闭评论
0 条评论
热度
最新
推荐阅读
目录
  • 结束语
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档