ActiveRecord并使用reject方法

时间:2011-03-05 23:12:21

标签: ruby ruby-on-rails-3 activerecord enumeration

我有一个模型可以从特定城市获取所有游戏。当我得到那些游戏时,我想过滤它们,我想使用reject方法,但我遇到了一个我想要理解的错误。

# STEP 1 - Model
class Matches < ActiveRecord::Base
  def self.total_losses(cities)
    reject{ |a| cities.include?(a.winner) }.count
  end
end

# STEP 2 - Controller
@games = Matches.find_matches_by("Toronto")
# GOOD! - Returns ActiveRecord::Relation

# STEP 3 - View
cities = ["Toronto", "NYC"]
@games.total_losses(cities)
# FAIL - undefined method reject for #<Class:0x00000101ee6360>

# STEP 3 - View
cities = ["Toronto", "NYC"]
@games.reject{ |a| cities.include?(a.winner) }.count
# PASSES - it returns a number.

为什么reject在我的模型中失败但在我看来不是?

1 个答案:

答案 0 :(得分:6)

不同之处在于您呼叫reject的对象。在视图中,@games是一个Active Record对象数组,因此调用@games.reject使用Array#reject。在您的模型中,您在类方法中调用reject上的self,这意味着它正在尝试调用不存在的Matches.reject。您需要先获取记录,如下所示:

def self.total_losses(cities)
  all.reject { |a| cities.include(a.winner) }.count
end