vue3上传文件组件方法封装

1.在utils文件夹下新建upload.js文件

javascript 复制代码
import { ElMessage } from 'element-plus'
import axios from 'axios';
// 参数fn是请求后端的接口;file是上传文件的数据,上传组件自带的参数;data是fn接口传递的数据;fileType是文件类型;size是文件大小
export async function upload (fn, file, data, fileType, size) {
  // 附件格式
  if (fileType) {
    const fileCut = file.file.name.substring(file.file.name.lastIndexOf('.') + 1)
    if (fileType.indexOf(fileCut.toLowerCase()) === -1) { // 处理后缀名大小写问题
      ElMessage.warning(`上传的附件格式只能是 ${fileType.toString()}!`);
      return Promise.reject(false)
    }
  }
  // 附件 大小   
  if (size) {
    const isLt2M = file.file.size / 1024 / 1024 < size
    if (!isLt2M) {
      return ElMessage.warning(`上传的附件大小不能超过 ${size}MB!`)
    }
  }
  let type = getContentType(file.file.name)
  let arr = {}
  // 使用同步方法返回参数 否则获取返回值时接口还没执行完成   
  await fn(data).then(res => {
    axios.put(res.data.uploadUrl,file.file,{
      headers: {
        'Content-Type': type
      }
    })
    
   arr = res.data
  })
  return Promise.resolve(arr)
}

function getContentType(filename) {
  let fileSuffix = filename.substring(filename.lastIndexOf(".") + 1);
  let contentType = 'multipart/form-data'
  switch(fileSuffix){
    case 'png':
      contentType = 'image/png';
      break
    case 'jpg':
      contentType = 'image/jpeg';
      break
    case 'jpeg':
      contentType = 'image/jpeg';
      break
    case 'gif':
      contentType = 'image/gif';
      break
    case 'pdf':
      contentType = 'application/pdf';
      break
    case 'doc':
      contentType = 'application/msword';
      break
    case 'docx':
      contentType = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
      break
    case 'xls':
      contentType = 'application/vnd.ms-excel';
      break
    case 'xlsx':
      contentType = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
      break
  }
  return contentType
}

说明:参数fn是请求后端的接口;file是上传文件的数据,上传组件自带的参数;data是fn接口传递的数据;

2.页面中使用

html 复制代码
<el-upload action="#" list-type="picture-card" :http-request="headImgUpload" :show-file-list="false">
              <div style="width: 100%;height: 100%;">
                <div v-if="!accountInfBaseVO.avatar" style="position: relative;top: 50%;transform: translateY(-50%);">
                  <svg-icon icon-class="jia" style="height: 100px;width: 100px;" />
                </div>
                <div v-else style="position: relative;top: 50%;transform: translateY(-50%);">
                  <svg-icon icon-class="jia" style="height: 100px;width: 100px;" />
                </div>
              </div>
            </el-upload>
javascript 复制代码
import { upload } from '@/utils/upload' // 封装的方法
import { getUpload,accountInfoUpdate} from "@/api/accountinfo";//上传头像接口和修改头像接口

// 修改头像
function headImgUpload(file) {
  const fileType = ['jpg', 'png', 'jpeg']
  if (file.file.name.length > 200) {
    return ElMessage.error("文件名不能超过200字符")
  }
  const data = upload(getUpload, file, { fileName: file.file.name, type: 2 }, fileType, 2)
  data.then(res => {
    if (!res.successUrl) {
      return
    }
    accountInfBaseVO.value.avatar = res.successUrl;
    let data = {
      nickName: accountInfBaseVO.value.nickName,
      avatar: accountInfBaseVO.value.avatar,
      industry: personalAuthenticationVO.value?.industry
    }
    accountInfoUpdate(data).then(res => {
      isImgEdit.value = false;
      ElMessage.success("修改成功!")
      getAccountInfo();
      RealNameRef.value.getAccountInfo();
    })
  })
}

说明:整个使用过程中的重点在于标签上属性http-request的使用;方法中重点在于封装方法的调用getUpload(),该封装方法的第一个参数是将文件上传到后端存储的接口,这一步只是上传到了后端数据库,要渲染在页面上就需要请求后端的另一个接口(修改头像接口)。

相关推荐
熊的猫13 分钟前
webpack 核心模块 — loader & plugins
前端·javascript·chrome·webpack·前端框架·node.js·ecmascript
速盾cdn20 分钟前
速盾:vue的cdn是干嘛的?
服务器·前端·网络
四喜花露水1 小时前
Vue 自定义icon组件封装SVG图标
前端·javascript·vue.js
前端Hardy1 小时前
HTML&CSS: 实现可爱的冰墩墩
前端·javascript·css·html·css3
web Rookie2 小时前
JS类型检测大全:从零基础到高级应用
开发语言·前端·javascript
Au_ust2 小时前
css:基础
前端·css
帅帅哥的兜兜2 小时前
css基础:底部固定,导航栏浮动在顶部
前端·css·css3
工业甲酰苯胺2 小时前
C# 单例模式的多种实现
javascript·单例模式·c#
yi碗汤园2 小时前
【一文了解】C#基础-集合
开发语言·前端·unity·c#
就是个名称2 小时前
购物车-多元素组合动画css
前端·css