Rails 3有Rails二维码插件吗?
我想为我的应用程序生成二维码,该应用程序将在 Rails 3.0 中运行, 有没有可用的插件?
提前致谢, 杰克.
I want to generate QR code for my application which is going to run in Rails 3.0,
Is there any plugin available for that ?
Thanks in Advance,
Jak.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 Google 的图表 API
You can use Google's Chart API
我认为 Google 改变了 api 端点。
这对我有用:
= image_tag "https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=#{url}&choe=UTF-8"
I think Google changed the api end point.
This worked for me:
= image_tag "https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=#{url}&choe=UTF-8"
据我了解,任何基于谷歌图表的内容都已被弃用,因此不是长期解决方案。
我使用过 rqrcode gem 和众多 JavaScript 编码器之一。
As I understand it, anything based on google charts is deprecated, so not a long term solution.
I've used both the rqrcode gem and one of the many javascript encoders.
我同意 TrAvid,但它不起作用,只需要一点点更改,
只需在控制器中分配
@url="www.google.com"
,然后使用此@url< /code> 在 View 中,因为
它对我很有用。
I Agree with TrAvid but it won't work, just need a small minute change,
Just assign
@url="www.google.com"
in the controller and then use this@url
in View asIt worked for me great.
我使用 rqrcode_png ,它允许您将代码保存为图像或像表格一样保存。它还允许您显示图像而不保存它。
以下是如何保存图像的示例
,或者如果您不想保存图像,可以
然后在视图中
<%= image_tag @png %>
I use the rqrcode_png that allow you to save the code as an image or do it like a table. It also let you display the image without saving it.
Here is an example of how save the image
or if you don't want to save it you can
and then in your view
<%= image_tag @png %>