1

这是在我的控制器中:

@somethings = Something.find(:all)

我的计数变量将显示基于“rca”的数据分解:

@something_to_count = Something.count( :conditions => { :rca => "4X32W"})
@something_to_count2 = Something.count( :conditions => { :rca => "6X36W"})

.....等到其他计数变量...

就这么简单,我试图让它在一个视图中显示过去三十天内从“某事”表中创建的所有条目的这些统计信息/计数,并在另一个视图中显示某个日期范围内的所有条目。created_at我的模型中的脚手架函数 ( and )添加了默认时间戳updated_at

我的观点必须分成两页。一页接受日期范围并显示计数变量以及表格中的数据,另一页显示过去三十天的相同。(即def last_30_daysdef within_dates将是行动)。我在网上找到了一个解决方案,它从 30 等中减去了一个日期变量,这似乎不起作用。一个完整的工作解决方案将不胜感激。请帮忙。另外,如何将简单的日期范围条目转换为与日期戳相同的格式?

4

1 回答 1

1

您可以为查询创建范围,以便重复使用它们。
我对您的问题的处理方法是这样的:

scope :last_30_days, where("created_at between ? and ?", Date.today - 30, Date.today)
scope :within_dates, lambda { |start_date, end_date|
  where("created_at between ? and ?", start_date, end_date)
}
scope :based_on_rca, lambda { |rca|
  where(:rca => rca)
}

@something_to_count = Something.based_on_rca("4X32W").last_30_days.count
@something_to_count = Something.based_on_rca("4X32W").within_dates(Date.today - 4.month, Date.today - 1.month).count

具有小查询的各种范围,可以链接以反映更大的查询。问候。

于 2012-06-28T13:18:27.250 回答