1
我有以下的多態關聯設置:導軌:拉動效果的多態關聯
class Favorite < ActiveRecord::Base
belongs_to :favoritable, :polymorphic => true
belongs_to :user
end
class Photo < ActiveRecord::Base
has_many :favorites, :as => :favoritable
belongs_to :user
end
我最終想要做的就是把所有特定用戶收藏的照片。
我該如何做到這一點?