2010-01-12 54 views
1
class Item < ActiveRecord::Base 
belongs_to :rulable, :polymorphic => true 
end 
class foo < ActiveRecord::Base 
has_many :items, :as => rulable 
end 
class bar < ActiveRecord::Base 
has_many :items, :as => rulable 
end 

找到屬於foo的物品的最佳方法是什麼?我目前使用的是這樣的:如何找到多態關係

f = Foo.find 1 
Item.find_by_rulable_id_and_rulable_type(f, 'Foo') 

回答

1

以下是語義上等同的,並且更容易閱讀和輸入。

f = Foo.find 1 
f.items