vue+element以base64的方式上传文件

最近在做一个element的upload以base64的方式实现文件上传,就需要前端处理上传文件的file文件流。接下来记录处理过程,仅供参考!

1.使用element的upload组件,选择你需要的组件就行

           <!-- 上传照片 -->
           <div class="uploadPhotoBox">
              <el-upload
                style="height:126px;width:90px;display:inline-block;"
                class="avatar-uploader"
                action=''
                :on-change="getFile"
                :auto-upload="false"
                :show-file-list="false"
                :before-upload="beforeAvatarUpload">
                <img v-if="imageUrl" :src="imageUrl" class="avatar">
                <img v-else src="../../assets/head.png" style="height:126px;width:90px;"/>
                <div class="changePhotoStyle">{{imageUrlText}}</div>
              </el-upload>
            </div>

2.method里面处理file生成base64格式,就是getBase64这个函数(FileReader需要使用promise封装才能使用)

  getBase64(file) {
      return new Promise(function(resolve, reject) {
        let reader = new FileReader();
        let imgResult = "";
        reader.readAsDataURL(file);
        reader.onload = function() {
          imgResult = reader.result;
        };
        reader.onerror = function(error) {
          reject(error);
        };
        reader.onloadend = function() {
          resolve(imgResult);
        };
      });
    },

3.通过on-change方式获取到file的文件信息,然后调用this.getBase64转换成base64的方式。

  getFile(file) {
      // if(file.success){
      console.log(file)
      const isJPG = file.raw.type === 'image/jpeg';
      const isPNG = file.raw.type === 'image/png';
      const isLt5M = file.raw.size / 1024 / 1024 < 5;
      if (!isJPG && !isPNG) {
        this.$message.error('上传图片只能是JPG或者PNG格式!');
      }
      if (!isLt5M) {
        this.$message.error('上传图片大小不能超过 5MB!');
      }
      if((isJPG || isPNG) && isLt5M){
        this.getBase64(file.raw).then(res => {
          console.log(res)
          //这里拿到base64的文件流,处理你自己的业务逻辑
        });
      }
      
    },

以上代码亲测有效,可直接复制到项目中查看console.log打印出来效果,亲自动手试试,纸上得来终觉浅,绝知此事要躬行!

  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值