• el-upload实现上传文件夹


    背景:如图一所示,最下面有一个黄色上传文件按钮,为手动上传而且上传区域有上传文件和上传文件夹的区分

    所以需要在点击了上传文件夹做特殊处理使得el-upload可以上传文件夹

    一、template区域

    1. <el-upload
    2. class="upload-file"
    3. drag
    4. multiple
    5. ref="uploadRef"
    6. :directory="true"
    7. v-show="uploadTypeIndex != 2 && fileArray.length == 0 && !isUpload"
    8. :file-list="fileArray"
    9. :auto-upload="false"
    10. :show-file-list="false"
    11. :before-upload="handleBeforeUpload"
    12. :http-request="handleUploadFile"
    13. :on-change="handleFileChange"
    14. accept="application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/pdf, text/plain, text/markdown"
    15. >
    16. <div class="upload-node w-full h-full" @click="handlePreview">
    17. <app-svg-icon icon-name="filled-add" class="w-48 h-48 cursor-pointer upload-node-icon" />
    18. div>
    19. el-upload>

    二、逻辑区域 

    01.在拖拽上传的区域绑定一个点击事件handlePreview,(注意不要直接绑定在el-upload区域,会被触发到两次)

    1. const handlePreview = () => {
    2. let inputDom: any = null
    3. nextTick(() => {
    4. if (document.querySelector('.el-upload__input') != null) {
    5. inputDom = document.querySelector('.el-upload__input')
    6. if (uploadTypeIndex.value == 1) {
    7. inputDom.webkitdirectory = true
    8. } else {
    9. inputDom.webkitdirectory = false
    10. }
    11. }
    12. })
    13. }
    14. //点击上传文件夹就将document.querySelector('.el-upload__input')获取到的webkitdirectory 设置为true,选择文件时浏览器就会只筛选文件夹
    15. //点击上传文件就将document.querySelector('.el-upload__input')获取到的webkitdirectory 设置为false

    02.此时在el-upload的上传文件方法下面就可以请求后端上传文件

     :http-request="handleUploadFile"

    1. // 上传文件
    2. const handleUploadFile = ({ file }) => {
    3. console.log(file, '---fie')
    4. //有几个文件就触发了几次
    5. uploadFileFunc(file)
    6. }
    7. function uploadFileFunc(file: any) {
    8. const formData = new FormData()
    9. formData.append('field1', '111')
    10. formData.append('file', file)
    11. formData.append('field2', '222')
    12. //此次携带参数请求
    13. axios({
    14. url: 'yourUrl',
    15. method: 'POST',
    16. headers: {
    17. 'Content-Type': 'application/x-www-form-urlencoded',
    18. },
    19. data: formData,
    20. }).then(res => {
    21. if (res != null && res.status == 200) {
    22. //成功后的逻辑
    23. }
    24. })
    25. }

    此时我发现我点击上传单个文件或者选取多个文件上传时是可以成功上传的,在handleUploadFile事件中打印的file长这样:webkitRelativePath:" "

    上传文件夹时,打印出来的file长这样:webkitRelativePath: "新建文件夹/111111111111111111.txt"

    后端直接返回提示 说找不到该文件,所以怀疑就是因为文件path的原因,所以直接将file的webkitRelativePath改为空字符串即可

    但是由于file 对象的属性是只读的,所以无法直接修改 file.webkitRelativePath 的值。如果想在前端上传文件夹时去掉文件的路径信息,可以使用 File 构造函数创建一个新的文件对象,只保留文件本身,而不包含路径信息。

    修改后的代码如下

    1. // 上传文件
    2. const handleUploadFile = ({ file }) => {
    3. console.log(file, '---fie')
    4. let fieClone = new File([file], file.name)//这里就可以文件夹中的每个文件都创建为一个新的 File 对象,并且只保留文件本身
    5. //有几个文件就触发了几次
    6. uploadFileFunc(fieClone)//传新的File对象
    7. }
    8. function uploadFileFunc(file: any) {
    9. const formData = new FormData()
    10. formData.append('field1', '111')
    11. formData.append('file', file)
    12. formData.append('field2', '222')
    13. //此次携带参数请求
    14. axios({
    15. url: 'yourUrl',
    16. method: 'POST',
    17. headers: {
    18. 'Content-Type': 'application/x-www-form-urlencoded',
    19. },
    20. data: formData,
    21. }).then(res => {
    22. if (res != null && res.status == 200) {
    23. //成功后的逻辑
    24. }
    25. })
    26. }

  • 相关阅读:
    SpringCloud实战教程 黑马商城企业级项目 服务注册和发现 OpenFeign
    汇编层面有三个主要的操作对象
    整理mongodb文档:副本集成员可以为偶数
    C# ref 学习1
    CSS 盒子模型
    聚已内酯偶联小鼠血清白蛋白/小麦麦清白蛋白;PCL-MSA/RSA(试用说明)
    设计模式:组合模式(C#、JAVA、JavaScript、C++、Python、Go、PHP)
    为什么浏览器渲染不出页面
    C# Rectangle基本用法和图片切割
    k8s学习笔记-完整版
  • 原文地址:https://blog.csdn.net/weixin_60886885/article/details/133920707