0

我有UserCommunity模型。

Community此命令将被用户喜欢模型

    if current_user.voted_up_on? @community
        current_user.dislikes @community
    else
        current_user.likes @community
    end

我现在正在尝试获取所有喜欢@community 的用户。我正在尝试这样做。但它不会返回正确的用户。
我怎样才能解决这个问题?

@users =  User.where(:id => @community.likes.map(&:voter_id)).order("last_active_at DESC").limit(10)

我为此 https://github.com/ryanto/acts_as_votable使用名为“acts_as_votable”的 gem

4

2 回答 2

1

试试这个:

@users = @community.likes.map(&:voter)

于 2013-02-03T09:19:17.310 回答
1

那将返回 AR::Relation

# Note: I'm not sure that polymorphic fields are: "votable_type" and "votable_id"

class Community
  ...
  def last_liked(limit = 10)
    User.includes(:votes).where(["votes.votable_type = ? AND votes.votable_id = ?", self.class.name, self.id]).order("users.last_active_at DESC").limit(limit)
  end
end
于 2013-02-03T15:44:27.547 回答