点击上传_vue-upload-component选">
当前位置:   article > 正文

vue el-upload 的文件夹上传_vue-upload-component选中文件夹上传

vue-upload-component选中文件夹上传

template 部分

 <el-upload
  ref="uploadFile"
  :headers="uploadObj.headers"
  :http-request="httpRequest"
  :file-list="fileList"
  :auto-upload="false"
  action="#"
  multiple
  class="upload-demo"
>
  <el-button size="small" type="primary">点击上传</el-button>
  <div slot="tip" class="el-upload__tip">
    请勿上传违法文件
  </div>
</el-upload>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

script 部分

 this.$nextTick(() => {
   this.$refs.uploadFile.$children[0].$refs.input.webkitdirectory = true
  })
  • 1
  • 2
  • 3

通过 设置 upload 组件 的 input webkitdirectory 为 true ,就可以选取文件夹,点击上传会提示这个,代表成功了。
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/384104
推荐阅读