vue使用Element el-upload 组件

Posted 奥特曼 

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue使用Element el-upload 组件相关的知识,希望对你有一定的参考价值。

一、基本使用

最近研究了一下 el-upload组件 踩了一些小坑  写起来大家学习一下

很经常的一件事情 经常会去直接拷贝 element的的组件去使用 但是用到上传组件时 就会遇到坑了

如果你直接去使用upload 你肯定会遇见这个错误

 而且 上传的图片 可能会突然消失  这时候如果你没有接口  你是完全不知道为什么移除的  所以 无接口时 只能去猜测是不是因为跨域报错 导致图片消失

最终去拿公司的地址调完接口,答案是对的 action="https://jsonplaceholder.typicode.com/posts/"  这是element中的action参数  用html 时 他会去调用ajax 使同源策略不同导致报错。

一般呢公司都会提供一个 转图片为url格式的地址链接 你只需要去调用它 保存下来就好了, 但是可能会遇到需要token 权限 ,这时候很少去做的事情来了,一般没有去直接通过组件带token,所以要通过 el-upload组件去携带token

 <el-upload
            action="https://xxxx地址"
            :headers="importHeaders"
          >
   </el-upload>

import {getToken} from '@/utils/token'


data() {
    return {
      importHeaders: {token: getToken()},
    };
  },

二、图片数量控制

 <el-upload
            action="https://security.brofirst.cn/api/common/upload"
            :headers="importHeaders"
            :limit="limit"
             :on-exceed="masterFileMax"
          >
            <i class="el-icon-plus"></i>
          </el-upload>



  // 最多上传几张图片
    masterFileMax(files, fileList) {
        console.log(files, fileList);
        this.$message.warning(`请最多上传 ${this.limit} 个文件。`);
    },

三、图片格式限制/可以选中多张图片

   <el-upload
             accept=".JPG, .PNG, .JPEG,.jpg, .png, .jpeg"
             multiple
          >
            <i class="el-icon-plus"></i>
          </el-upload>

例子

   <el-upload
            action="https://xxxx"
            :headers="importHeaders"
            list-type="picture-card"
            :on-preview="handlePictureCardPreview"
            :on-remove="handleRemove"
            :on-success="handleAvatarSuccess"
            :limit="limit"
             :on-exceed="masterFileMax"
             accept=".JPG, .PNG, .JPEG,.jpg, .png, .jpeg"
             multiple
          >
            <i class="el-icon-plus"></i>
          </el-upload>



<script>
import {getToken} from '@/utils/token'
export default {
  name:'feedback',
  data() {
    return {
      importHeaders: {token: getToken()},
       images:[],
      limit:9
    };
  },
  methods: {
  //删除图片
    handleRemove(file, fileList) {
     const idx= this.images.findIndex(it=>it===file.response.data.fullurl)
     this.images.splice(idx,1)
    },
    handlePictureCardPreview(file) {
      this.dialogImageUrl = file.url;
      this.dialogVisible = true;
    },
    // 上传成功后的数据
    handleAvatarSuccess(response, file, fileList){
      console.log(response, file, fileList);
      if(response.code===1){
        this.images.push(response.data.fullurl)
      }
    },
    // 最多上传几张图片
    masterFileMax(files, fileList) {
        console.log(files, fileList);
        this.$message.warning(`请最多上传 ${this.limit} 个文件。`);
    }
  }
};
</script>

 

以上是关于vue使用Element el-upload 组件的主要内容,如果未能解决你的问题,请参考以下文章

elementUI+el-upload 上传文件大小与文件类型校验

el-upload上传图片

elementui el-upload图片文件上传必传校验

element-ui plus中如何单独出发el-upload提交

el-upload配合vue-cropper实现上传图片前裁剪

el-upload配合vue-cropper实现上传图片前裁剪