我有两个模型:我的 RoR 项目中的汽车和图片
class Car < ActiveRecord::Base
has_many :pictures, :as => :imageable, :dependent => :destroy
end
和
class Picture < ActiveRecord::Base
belongs_to :imageable, :polymorphic => true, :dependent => :destroy
end
我如何才能找到所有只有儿童照片的汽车?