如何从has_many中的数组获取单个属性:通过关联(用户/朋友模型)

时间:2012-09-16 01:29:58

标签: ruby-on-rails-3 associations

在我的用户模型中,我有以下内容:

class User < ActiveRecord::Base
  has_many :friendships, dependent: :destroy
  has_many :friends, :class_name => "User", :foreign_key => "friend_id"

  has_many :pending_friends, 
   :through => :friendships, 
   :conditions => "status = 'pending'", 
   :foreign_key => "user_id", 
   :source => :friend

  has_many :requested_friends, 
   :through => :friendships,
   :source => :friend, 
   :conditions => "status = 'requested'"

  def friends
    direct_friends | inverse_friends
  end

在我的友谊模型中,我有以下内容:

class Friendship < ActiveRecord::Base
 belongs_to :user
 belongs_to :friend, :class_name => "User", :foreign_key => "friend_id"

在我看来,我创建了一个每个用户朋友的数组,如下所示。此代码使用来自朋友的“用户”数据库模型属性的所有数据来填充和填充数组。

  User.first.friends

但是,我希望能够呼叫用户的朋友的名字。那么,例如,我不应该做这样的事情吗?

    User.first.friends.map(&:name)

如何获得仅包含朋友姓名的数组,而不是所有朋友的用户属性?我也很感激,如果有人能告诉我为什么。使用了第一个(我从这里得到了它:Rails calling User record from Friends model),因为它不仅仅获得了用户朋友的第一个实例(它获取了所有实例)。为什么这样做:

 User.friends 

返回一个空数组?

1 个答案:

答案 0 :(得分:5)

尝试方法pluck

User.first.friends.pluck(:name)

您应该使用first方法从表中检索一个对象。用户是包含大量用户的表。