如何选择文件并将其二进制内容加载到局部变量(JS/HTML)

发布于 2024-11-07 12:18:49 字数 115 浏览 0 评论 0原文

我想在 REST PUT 请求中发送文件。 用户应该能够选择他想要从本地计算机加载的文件。我需要将文件作为二进制内容加载并将其作为 PUT 请求的一部分发送。

如何让用户选择文件并加载其二进制内容?

I want to send a file in a REST PUT request.
The user should be able to choose the file he wants to load from his local machine. I need to load the file as binary content and send it as part of the PUT request.

How can i let the user choose the file and load its binary content?

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

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

发布评论

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

评论(1

转瞬即逝 2024-11-14 12:18:49

您应该有一个 enctype 为 multipart/form-data 的表单,并且方法等于 PUT

<form method="PUT" enctype="multipart/form-data" action="http://myrestserver.com/">

User name: <input type="text" name="username" />
<br />
Password: <input type="password" name="password" />
<br />
File to upload: <input type="file" name="uploaded_file">
<br />
<input type="submit" value="Press"> to upload the file!

</form>

You should have a form with the enctype of multipart/form-data and the method equals PUT

<form method="PUT" enctype="multipart/form-data" action="http://myrestserver.com/">

User name: <input type="text" name="username" />
<br />
Password: <input type="password" name="password" />
<br />
File to upload: <input type="file" name="uploaded_file">
<br />
<input type="submit" value="Press"> to upload the file!

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