vue使用Element el-upload 组件踩坑记

作者:奥特曼 时间:2023-07-02 16:32:17 

一、基本使用

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

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

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

vue使用Element el-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 组件踩坑记

补充:在vue项目中使用element-ui的Upload上传组件


<el-upload
              v-else
              class='ensure ensureButt'
              :action="importFileUrl"
              :data="upLoadData"
              name="importfile"
              :onError="uploadError"
              :onSuccess="uploadSuccess"
              :beforeUpload="beforeAvatarUpload"
              >
              <el-button size="small" type="primary">确定</el-button>

其中importFileUrl是后台接口,upLoadData是上传文件时要上传的额外参数,uploadError是上传文件失败时的回掉函数,uploadSuccess是文件上传成功时的回掉函数,beforeAvatarUpload是在上传文件之前调用的函数,我们可以在这里进行文件类型的判断。


data () {
   importFileUrl: 'http:dtc.com/cpy/add',
   upLoadData: {
       cpyId: '123456',
       occurTime: '2017-08'
   }
},
methods: {
   // 上传成功后的回调
   uploadSuccess (response, file, fileList) {
     console.log('上传文件', response)
   },
   // 上传错误
   uploadError (response, file, fileList) {
     console.log('上传失败,请重试!')
   },
   // 上传前对文件的大小的判断
   beforeAvatarUpload (file) {
     const extension = file.name.split('.')[1] === 'xls'
     const extension2 = file.name.split('.')[1] === 'xlsx'
     const extension3 = file.name.split('.')[1] === 'doc'
     const extension4 = file.name.split('.')[1] === 'docx'
     const isLt2M = file.size / 1024 / 1024 < 10
     if (!extension && !extension2 && !extension3 && !extension4) {
       console.log('上传模板只能是 xls、xlsx、doc、docx 格式!')
     }
     if (!isLt2M) {
       console.log('上传模板大小不能超过 10MB!')
     }
     return extension || extension2 || extension3 || extension4 && isLt2M
   }
}

来源:https://blog.csdn.net/m0_46846526/article/details/120555641

标签:vue,Element,el-upload,组件
0
投稿

猜你喜欢

  • Python使用sax模块解析XML文件示例

    2021-11-28 15:31:39
  • 在Python 字典中一键对应多个值的实例

    2023-07-25 23:45:02
  • Python实现简单扫雷游戏

    2022-03-27 15:05:23
  • python实现自动重启本程序的方法

    2022-07-18 14:16:19
  • MySQL中隐藏空间问题浅析

    2009-11-24 09:04:00
  • Python求算数平方根和约数的方法汇总

    2021-12-08 18:03:39
  • 举例讲解Python常用模块

    2022-03-21 07:35:49
  • Mysql systemctl start mysqld报错的问题解决

    2024-01-26 03:41:45
  • 基于Python实现英语单词小游戏

    2023-03-22 01:34:19
  • 如何将sql执行的错误消息记录到本地文件中实现过程

    2024-01-22 06:50:37
  • JavaScript修改作用域外变量的方法

    2024-04-10 16:12:01
  • Python操作Elasticsearch处理timeout超时

    2022-04-23 02:42:18
  • mac下给python3安装requests库和scrapy库的实例

    2023-11-06 09:44:52
  • Python强大的自省机制详解

    2021-06-07 02:07:57
  • 创意设计:字母趣味组合

    2008-01-26 18:50:00
  • numpy下的flatten()函数用法详解

    2021-08-19 04:27:54
  • mysql 获取昨天日期、今天日期、明天日期以及前一个小时和后一个小时的时间

    2024-01-24 08:21:54
  • pjblog3相关日志功能(支持生成静态模式)

    2008-11-20 13:41:00
  • Python中如何将Tqdm与Asyncio结合使用呢

    2021-06-13 11:18:40
  • Linux-ubuntu16.04 Python3.5配置OpenCV3.2的方法

    2022-06-24 09:32:21
  • asp之家 网络编程 m.aspxhome.com