我是协会的新手。任何人解释我在哪里使用多态关联及其目的。
class Picture < ActiveRecord::Base belongs_to :imageable, :polymorphic => true end
class Employee < ActiveRecord::Base has_many :pictures, :as => :imageable end
类 Product < ActiveRecord::Base has_many :pictures, :as => :imageable end
提前致谢。