通过 iFrame 上传 javascript File 对象
我正在尝试创建一个拖放文件上传用户界面。问题是我必须使用老式的多部分表单提交文件。是否可以获取从放置事件中获取的 File 对象,并以某种方式将它们插入到表单中,以便可以将它们提交到类似文件输入的 iFrame 中?
I'm trying to create a drag and drop file upload UI. The problem is that I have to submit the files using an old fashioned multipart form. Is it possible to take the File objects you get from a drop event and somehow insert them into a form so they can be submitted to an iFrame like file inputs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您必须通过多部分表单提交,那么不行,没有跨浏览器的方法可以做到这一点。浏览器不会让 JavaScript 代码更新任何“文件”输入元素的值,原因应该是显而易见的(安全性 - 如果您的代码将“文件”输入设置为任何路径,那么......)。
有处理文件的更新方法,但通常仍然无法创建或复制具有值的“文件”元素。
If you have to submit via a multi-part form, then no, there's no cross-browser way to do this. Browsers will not let JavaScript code update the value of any "file" input elements, for reasons that should be obvious (security - if your code code set a "file" input to any path, well ...).
There are newer ways of handling files, but in general there's still no way to create or copy a "file" element with a value.