如何干掉Mongoid模型的共享范围?

时间:2012-01-29 01:08:13

标签: ruby-on-rails mongoid

我有一些Mongoid模型类都有:datetime字段。我想查询这些模型以找出属于今天日期的记录。查询将如下所示:

scope today, where(:datetime.gt => DateTime.now.beginning_of_day, :datetime.lt => DateTime.now.end_of_day)

目前,上述范围代码在所有模型类中都是重复的。我该如何干这个?

1 个答案:

答案 0 :(得分:2)

简单的事情是:

module TimeDepedentent
  field :datetime

  scope today, where(:datetime.gt => DateTime.now.beginning_of_day, :datetime.lt => DateTime.now.end_of_day)

  scope yesterday ...
  scope one_month_ago ...
end

class MyModel
  include TimeDepedentent
end