循环中的循环来填充数组?
我正在构建一个时间注册程序。 用户可以处理一个项目,我想在图表中显示每个用户每个月在一个项目上工作的小时数。 图表插件的工作原理如下:
first_serie = OpenFlashChartLazy::Serie.new(
[["2008-1",100],["2008-2",120],["2008-3",130]],
{:title=>"name_of_user1",:start_date=>Time.mktime(2008,1,1),:items=>8})
这会在图表中添加一条新线。
我的问题是如何循环遍历所有用户并为每个用户填充数据库中的数据的新系列?
I am building a time registration program. Users can work on a project, and I want to display in a chart how many hours each user worked on a project, let's say, each month. The chart plugin works like this:
first_serie = OpenFlashChartLazy::Serie.new(
[["2008-1",100],["2008-2",120],["2008-3",130]],
{:title=>"name_of_user1",:start_date=>Time.mktime(2008,1,1),:items=>8})
This adds a new line in the graph.
My question is how can I loop through all my users and for each fill a new series with data from the database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道如何生成 Serie.new 的所有数据,但您可以开始使用它:
这会将所有添加的 Serie 对象添加到数组中。
I have no idea how you generate all the data for Serie.new, but you can get started using this:
This will add all of the added Serie objects to an array.
作为 Pesto 的后续,使用注射会更好。
相同的代码,只是没有 @series = []
As a follow up to Pesto would be nicer to use inject.
Same code, just doesnt have a @series = []