我有两个模型:用户和项目。这个想法是用户可以关注项目和其他用户。自然地,用户和项目是多态“可跟随”类型的一部分。现在,使用用户模型,我想得到三件事:
user.followed_users
user.followed_projects
user.followers
前两个工作正常;这是我遇到麻烦的第三个。这是一种反向查找,其中外键成为下表中的“followable_id”列,但无论我如何建模,我都无法让查询正确运行。
用户模型
has_many :follows, :dependent => :destroy
has_many :followed_projects, :through => :follows, :source => :followable, :source_type => "Project"
has_many :followed_users, :through => :follows, :source => :followable, :source_type => "User"
has_many :followers, :through => :follows, :as => :followable, :foreign_key => "followable", :source => :user, :class_name => "User"
跟随模型
class Follow < ActiveRecord::Base
belongs_to :followable, :polymorphic => true
belongs_to :user
end
我的关注表有:user_id followable_id followable_type
每当我运行查询时,我都会得到:
SELECT `users`.* FROM `users` INNER JOIN `follows` ON `users`.`id` = `follows`.`user_id` WHERE `follows`.`user_id` = 7
它应该是“followable_id = 7 AND followable_type = 'User”,而不是“user_id = 7”
有什么想法吗?