如何选择文件并将其二进制内容加载到局部变量(JS/HTML)
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该有一个 enctype 为 multipart/form-data 的表单,并且方法等于 PUT
You should have a form with the enctype of multipart/form-data and the method equals PUT