Ant-design-vue2 upolad组件 customRequest 上传

该文章展示了一个Vue组件uploadFileComp,用于文件上传。组件支持文件大小限制(不超过20MB)和特定文件类型的检查(如PDF)。当用户尝试上传文件时,会进行验证,上传成功后触发更新事件并显示文件名。此外,还提供了删除功能,并在操作过程中显示加载状态。
摘要由CSDN通过智能技术生成

uploadFileComp组件

<template>
  <div>
    <a-spin :spinning="spinning">
      <div v-if="fileInfo.fileName">
        {{ fileInfo.fileName }}
        <a-icon type="delete" style="color:#ff7875" @click="del" />
      </div>
      <a-upload v-else name="file" :customRequest="customRequest" :beforeUpload="beforeUpload">
        <a-button> <a-icon type="upload" /> Upload </a-button>
      </a-upload>
    </a-spin>
  </div>
</template>
<script>
import { upload } from '@/api/upload'
export default {
  props: {
    fileInfo: {
      type: Object,
      default: () => {}
    }
  },
  data() {
    return {
      spinning: false
    }
  },
  methods: {
    del() {
      let _this = this
      this.$confirm({
        title: '确认删除?',
        onOk() {
          _this.$emit('update', { fileName: '', url: '' })
        }
      })
    },
    beforeUpload(file) {
      return new Promise((resolve, reject) => {
        const isLt20M = file.size / 1024 / 1024 < 20
        const suffix = file.name.substring(file.name.lastIndexOf('.') + 1).toUpperCase()
        const suffixArr = ['PDF']
        if (!isLt20M) {
          this.$message.error('上传图片大小不能超过 20M!')
          return reject(new Error(false))
        }
        if (!suffixArr.includes(suffix)) {
          this.$message.error('上传的文件不符合规范')
          return reject(new Error(false))
        }
        return resolve()
      })
    },
    customRequest(options) {
      this.spinning = true
      const formData = new FormData()
      formData.append('file', options.file)
      upload(formData)
        .then(res => {
          if (res.code === 0) {
            this.$emit('update', res.data)
            options.onSuccess(res, options.file)
          } else {
            this.$message.error({
              content: res.msg
            })
          }
        })
        .catch(err => {
          this.$message.error(err)
        })
        .finally(() => {
          this.spinning = false
        })
    }
  }
}
</script>

页面使用

import uploadFileComp from '@/components/uploadFileComp'
<uploadFileComp :fileInfo="fileInfo" @update="updateFnc"></uploadFileComp>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

web_Hsir

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值