关于input直接上传文件夹

2023-12-13 16:41:02

用最基础的input 就可以实现

<input type="file" webkitdirectory directory="" />

如果是像点击按钮之后上传文件夹可以这样写

 <el-button type="primary" style="margin-top: 30px;width: 170px;" @click="importModel">1
</el-button>
importModel() {
            const input = document.createElement('input');
            input.setAttribute('webkitdirectory', '');
            input.setAttribute('directory', '');

        },

文章来源:https://blog.csdn.net/JINX1024/article/details/134557712
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。