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')