我在我的项目中使用 Rails 3.2.8,我想使用名为“open”的范围
scope :open, where(:closed => false)
为了用 JSON 发送它。类似的东西json.open @foo.bar.open.count
。但是 Rails 将其识别.open
为 Ruby 方法(我猜与打开的文件有关),而不是我的范围(并抛出错误 "wrong number of arguments (0 for 1)")。如何强制 Rails 使用我的范围,而不是 Ruby 方法?