vue3上传文件组件方法封装

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

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.页面中使用


              
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(),该封装方法的第一个参数是将文件上传到后端存储的接口,这一步只是上传到了后端数据库,要渲染在页面上就需要请求后端的另一个接口(修改头像接口)。

你可能感兴趣的:(vue3,javascript,前端,vue.js)