如何伪造ajax文件上传?

发布于 2024-11-16 05:26:48 字数 205 浏览 0 评论 0原文

我有一个上传表单,我想填充一个文件,特别是图像。

我的理解是我需要创建一个 File 对象来放入相对形式的 FileList 中。目前我拥有的图像采用数据 URI 格式“data:image/png;base64,...”,但我可以更改它。

如果这是真的,如何从图像创建正确的 File 对象并将其添加到 FileList 中?如果不是,您是否建议更好的解决方案?

I've an upload form I would like to populate with a file, in particular an image.

My understanding is that I need to create a File object to put in the FileList of the relative form. Currently the image I have is in the data URI format "data:image/png;base64,..." but I can change that.

If that is true how do I create the correct File object from an image and add it to the FileList? If it is not do you suggest a better solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦途 2024-11-23 05:26:48

使用常规表单并将其定位到显示设置为无的 iframe。

<form id="my_form" enctype="multipart/form-data" action="upload_handler.php" method="POST" target="upload_target">
   <input name="uploadfile" type="file" />
   <input type="submit" value="Upload File" />
</form>
<iframe id="upload_target" name="upload_target" style="display:none;"></iframe> 

Use a regular form and target it to an iframe with display set as none.

<form id="my_form" enctype="multipart/form-data" action="upload_handler.php" method="POST" target="upload_target">
   <input name="uploadfile" type="file" />
   <input type="submit" value="Upload File" />
</form>
<iframe id="upload_target" name="upload_target" style="display:none;"></iframe> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文