如何在Ruby on Rails中检索相关记录?

时间:2013-02-17 14:36:47

标签: ruby ruby-on-rails-3 activerecord

我正在尝试找到user的逾期invoices

class User < ActiveRecord::Base
  def overdue_invoices
    invoices.where("overdue = ?", true)
  end
end

class Invoice < ActiveRecord::Base
  def overdue
    balance > 0 && Date.today > due_date
  end
end

问题似乎是overdueInvoice模型上的方法,而不是数据库列。

我怎样才能检索这些记录?这甚至是有意义的还是将这些truefalse值存储在数据库中会更好?

1 个答案:

答案 0 :(得分:5)

您应该在overdue上为Invoice创建一个等效的类方法或scope

class Invoice < ActiveRecord::Base
  def self.overdue
    where('balance > 0').where('? > due_date', Date.today)
  end
end

然后,您可以在发票关系上调用overdue

class User < ActiveRecord::Base
  def overdue_invoices
    invoices.overdue
  end
end

请注意,我假设due_date是数据库列,如果不是,则不能使用此方法 - 但是,您可以将其替换为SQL,以便根据数据计算到期日期列。