Rails 3.2
在我的models / ticket.rb中,我有:
belongs_to :ticket_profile
在我的models / ticket_profile.rb中,我有:
has_many :tickets
attr_accessible :ticket_id
在我的ticket_profile模型中,我有:
attr_accessible :type
如何对ticket_profile类型为特定值的故障单进行搜索,例如:" flowers"。
答案 0 :(得分:0)
您可以使用where
TicketProfile.where(:type => 'flowers').tickets