Googlecharts gem - 我在哪里放置 require 'gchart'
在下一页上,它介绍了如何使用 googlecharts gem
http://googlecharts.rubyforge.org/
它有一行写着“
require 'gchart'
我该把这个放在哪里?”在 gemfile 或控制器中?
编辑: 在我的视图文件中,我有:
<%
require 'gchart'
Gchart.line(:size => '200x300',
:title => "example title",
:bg => 'efefef',
:legend => ['first data set label', 'second data set label'],
:data => [10, 30, 120, 45, 72])
%>
但上面不显示图像
编辑2: 该图表现在可以工作,这是我使用的代码
<% require 'gchart' %>
<img src="<%=Gchart.line(:data => [0, 40, 10, 70, 20])%>"/>
On the following page it says how to use the googlecharts gem
http://googlecharts.rubyforge.org/
It has a line that says
require 'gchart'
Where do I put this? In the gemfile or the controller?
EDIT:
In my view file I have:
<%
require 'gchart'
Gchart.line(:size => '200x300',
:title => "example title",
:bg => 'efefef',
:legend => ['first data set label', 'second data set label'],
:data => [10, 30, 120, 45, 72])
%>
But the above does not display an image
EDIT 2:
The chart is now working, here is the code I used
<% require 'gchart' %>
<img src="<%=Gchart.line(:data => [0, 40, 10, 70, 20])%>"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在
Gemfile
中指定 require 语句。请参阅Bundler 文档。You can specify a require statement in your
Gemfile
. See Bundler documentation.你必须重新启动你的服务器
You have to restart your server