我正在尝试通过我的截止日期属性在我的模型中创建一个可以找到数据集的范围,例如 less_than_a_year、less_than_six_month。
class Goal < ActiveRecord::Base
attr_accessible :category, :title, :detail, :deadline, :achieve
#need help solving this
scope :less_than_a_year, where()
end
所以它会执行,goal.less_than_a_year 并提供不到一年的数据列表。谢谢你。