Ruby-on-Rails:多个 has_many :通过可能吗?
Posted
技术标签:
【中文标题】Ruby-on-Rails:多个 has_many :通过可能吗?【英文标题】:Ruby-on-Rails: Multiple has_many :through possible? 【发布时间】:2011-01-23 22:02:31 【问题描述】:Rails 中是否可以有多个相互传递的has_many :through
关系?我收到了这样做的建议,作为我发布的另一个问题的解决方案,但一直无法让它发挥作用。
朋友是通过连接表形成的循环关联。目标是为friends_comments
创建一个has_many :through
,因此我可以使用User
并执行user.friends_comments
之类的操作,以在一个查询中获取他的朋友制作的所有cmets。
class User
has_many :friendships
has_many :friends,
:through => :friendships,
:conditions => "status = #Friendship::FULL"
has_many :comments
has_many :friends_comments, :through => :friends, :source => :comments
end
class Friendship < ActiveRecord::Base
belongs_to :user
belongs_to :friend, :class_name => "User", :foreign_key => "friend_id"
end
这看起来很棒,也很有意义,但对我不起作用。这是我在尝试访问用户的 friends_cmets 时在相关部分遇到的错误:ERROR: column users.user_id does not exist
: SELECT "comments".* FROM "comments" INNER JOIN "users" ON "comments".user_id = "users".id WHERE (("users".user_id = 1) AND ((status = 2)))
当我只输入 user.friends 时,它会执行以下查询:: SELECT "users".* FROM "users" INNER JOIN "friendships" ON "users".id = "friendships".friend_id WHERE (("friendships".user_id = 1) AND ((status = 2)))
所以它似乎完全忘记了原来的has_many
通过友谊关系,然后不恰当地尝试使用User类作为连接表。
是我做错了什么,还是这根本不可能?
【问题讨论】:
【参考方案1】:有一个插件可以解决你的问题,看看this blog。
你安装插件
script/plugin install git://github.com/ianwhite/nested_has_many_through.git
【讨论】:
【参考方案2】:编辑:
Rails 3.1 支持嵌套关联。例如:
has_many :tasks
has_many :assigments, :through => :tasks
has_many :users, :through => :assignments
不需要下面给出的解决方案。详情请参阅this 截屏视频。
原答案
您正在传递一个 has_many :through
关联作为另一个 has_many :through
的来源
协会。我不认为它会起作用。
has_many :friends,
:through => :friendships,
:conditions => "status = #Friendship::FULL"
has_many :friends_comments, :through => :friends, :source => :comments
你有三种方法来解决这个问题。
1) 编写关联扩展
has_many :friends,
:through => :friendships,
:conditions => "status = #Friendship::FULL" do
def comments(reload=false)
@comments = nil if reload
@comments ||=Comment.find_all_by_user_id(map(&:id))
end
end
现在你可以通过如下方式获取好友cmets:
user.friends.comments
2) 向User
类添加一个方法。
def friends_comments(reload=false)
@friends_comments = nil if reload
@friends_comments ||=Comment.find_all_by_user_id(self.friend_ids)
end
现在你可以通过如下方式获取好友cmets:
user.friends_comments
3) 如果您希望这样做更有效率,那么:
def friends_comments(reload=false)
@friends_comments = nil if reload
@friends_comments ||=Comment.all(
:joins => "JOIN (SELECT friend_id AS user_id
FROM friendships
WHERE user_id = #self.id
) AS friends ON comments.user_id = friends.user_id")
end
现在你可以通过如下方式获取好友cmets:
user.friends_comments
所有方法都会缓存结果。如果要重新加载结果,请执行以下操作:
user.friends_comments(true)
user.friends.comments(true)
或者更好:
user.friends_comments(:reload)
user.friends.comments(:reload)
【讨论】:
不幸的是,这种方法的最初目的是让我可以在一个查询中从 SQL 中获取所有的朋友 cmets。见这里:***.com/questions/2382642/… 如果我写一个函数,那将导致 N+1 个查询。 不,不会。这将是 2 个查询。第一个查询获取好友,第二个查询获取所有个好友的 cmets。如果您已经将朋友加载到用户模型中,那么您不会产生任何成本。我已经用另外两种方法更新了解决方案。看看吧。 @williamjones 您在所有三种方法中都没有 N+1 问题。您可以检查您的日志文件以确保这一点。我个人喜欢方法 1,因为它非常优雅,即user.friends.comments
优于 user.friends_comments
您能否解释一下第一个解决方案中 find_all_by_users_id 的参数?我会很感激的。
@James:Rails 提供了两种类型的动态查找器:单行(find_by
)和多行(find_all_by
)。 find_all_by_user_id
是多行动态查找器。阅读 Rails 文档了解更多详情:guides.rubyonrails.org/…【参考方案3】:
虽然这在过去不起作用,但现在在 Rails 3.1 中可以正常工作。
【讨论】:
【参考方案4】:我发现这篇博文很有用:http://geoff.evason.name/2010/04/23/nested-has_many-through-in-rails-or-how-to-do-a-3-table-join/
【讨论】:
以上是关于Ruby-on-Rails:多个 has_many :通过可能吗?的主要内容,如果未能解决你的问题,请参考以下文章
Ruby-on-Rails 3.2:导出包含大型数据集(100,000 条记录)的 CSV