1

我正在尝试计算分配给他们的具有特定 team_id 的用户数量。目前我们有一个用户表和一个团队表,我们的用户表有一个belongs_to我们的团队表,而团队表与用户是多对多的关系。

我的 teams_helper 中有以下代码

def number_of_players(team)
  User.count("team_id", :conditions => team_id= :team)
end

我认为这是这样的:

%td= number_of_players(team.id)

我遇到的问题是计数不正确。

4

1 回答 1

1

那个怎么样?

# if team is an integer
def number_of_players(team)
  User.where(:team_id => team).count
end

或者

# if team is an instance of Team and `has_many :users`
def number_of_players(team)
  team.users.count
end
于 2012-06-21T14:21:39.203 回答