我有一个Friends
模型user_id
和friend_id
...两者都是特定用户的ID。
我想要做的是这样的事情:
@relationship = Friend.find_by_user_id(current_user.id)
@relationship.friend.username
我可以基本上以friend_id
列的方式将用户拉到@relationship.user.username
列。
我如何设置我的关联来解决这个问题?
答案 0 :(得分:0)
答案 1 :(得分:0)
如果您的专栏未反映预期的惯例,请使用class_name
:
class Friendship < ActiveRecord::Base
belongs_to :user
belongs_to :friend, class_name: 'User'
end
请注意,我将模型名称修改为Friendship
以更好地反映此模型的用法。此外,如果您将User
模型修改为如下所示,则可以让自己更轻松:
class User < ActiveRecord::Base
has_many :friendships
has_many :friends, :through => :friendships
has_many :friendships_of, :class_name => 'Friendship', :foreign_key => :friend_id
has_many :friends_of, :through => :friendships_of, :source => :user
end
现在查看所有用户的朋友:
current_user.friends.map(&:username)
看看谁有“朋友”用户:
current_user.friends_of.map(&:username)