通过 iFrame 上传 javascript File 对象

发布于 2024-12-06 13:22:14 字数 115 浏览 1 评论 0原文

我正在尝试创建一个拖放文件上传用户界面。问题是我必须使用老式的多部分表单提交文件。是否可以获取从放置事件中获取的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你在看孤独的风景 2024-12-13 13:22:14

如果您必须通过多部分表单提交,那么不行,没有跨浏览器的方法可以做到这一点。浏览器不会让 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文