如何使用 html5 jquery 拉取多个文件
如何使用 FileSystem Api (Html5) 提取多个文件并将其作为数组发送到 javascript。 实际上,我正在尝试选择多个文件并将它们添加到我的幻灯片中。
任何帮助将不胜感激。
问候 ——阿杰
How to pull multiple files using FileSystem Api (Html5) and send to javascript as an array.
Actually I'm trying to select multiple files and add them to my slideshow.
Any help would be appreciated.
Regards
--A.J
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将
multiple
属性添加到您的输入中。您还可以添加
webkitdirectory
、directory
和/或mozdirectory
指定您希望允许用户上传整个文件夹。显然,这些不是标准的(尽管普通的directory
是/可能是)然后在您的 JavaScript 中,您的输入元素将有一个
files
数组,其中包含所选内容的元信息文件,适合在 FileReader API 中使用。例如:(我不推荐内联JavaScript,只是举例)
You need to add the
multiple
attribute to your inputYou can also add
webkitdirectory
,directory
, and/ormozdirectory
to specify you want to allow users to upload entire folders. These are not standard, obviously (although plain ol'directory
is/may be)Then in your JavaScript, your input element will have a
files
array containing meta info on the selected files, ripe for using in the FileReader API. For example:(I don't recommend the inline JavaScript, just for example)