Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我现在有一个解决方案,可以通过 JavaScript 和 jQuery 使用(拖放)技术上传多个文件,但我需要找到一种方法来上传文件夹,其中所有内容都是Google 驱动器之类的内容。这可能吗?
不幸的是,您不能这样做,只能使用浏览器。
您将不得不为此使用自定义客户端。
但一个简单的方法将是Ask the user to ZIP the folder and upload the zip using the file-upload control。然后在服务器端,您可以解压缩并阅读内容。
Ask the user to ZIP the folder and upload the zip using the file-upload control