如何使用actionwebservice将图像传输到客户端
Actionwebservice 似乎是 Rails 的通用 Web 服务基础设施。 是否可以使用这个 gem 将图像从服务器传递到客户端以及如何做到这一点?
谢谢。
Actionwebservice seems to be a generic web-service infrastructure for rails.
Is it possible to use this gem to pass image from server to the client and how to do that?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后,我自己找到了解决方法。
以图像文件为例,您可以使用send_file将文件发送到浏览器,也可以将资源的链接发送到客户端。
然后客户端可以使用直接链接通过标准 HTTP GET 访问资源。
Finally, I find a workaround my self.
Take a image file for example, you can use send_file to send the file to the browser, or you can send out the link to the resource to the client.
Then the client could use the direct link to access the resource by a standard HTTP GET.