带图像的 JavaScript Post 请求
恐怕我可能已经知道答案了。我希望离线呈现一个 HTML5 表单,用户可以在其中选择要上传的图像。一旦用户重新上线,图像就会被上传。我可以从文件输入中提取所有数据,但是有没有办法通过 post 发送数据以将 blob 保存在服务器上?
我正在使用 jQuery 并有一个 Rails 后端(典型的文件上传是通过 CarrierWave 处理的)。
I'm afraid I might know the answer to this already. I'm hoping to present an HTML5 form offline in which a user can select an Image to upload. Once the user gets back on line the image will be uploaded. I can extract all the data from the file input, but is there a way to send the data via post to save the blob on the server?
I'm using jQuery and have a Rails backend (typical fileuploads are handled through CarrierWave).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建
online
事件并在包含文件图像的表单上调用submit()
。You can create
online
event and callsubmit()
on form that has your file image.