4

我是开发 Rails 应用程序的新手,所以在这里的大部分时间里,我只严重依赖 rails generate 命令来为整个应用程序制作脚手架。虽然我的应用程序的所有其他部分都可以正常工作,但这部分在自动生成后立即引发错误。

错误如下:

NoMethodError in ConfigurationsController#index 
undefined method `all' for ActiveSupport::Configurable::Configuration:Class

这是包含没有方法调用的代码片段

def index
  @configurations = Configuration.all
end

这是有问题的模型

class Configuration < ActiveRecord::Base
  belongs_to :users, class_name: 'User', foreign_key: 'user_id'
end

我添加了 belongs_to 部分......无论如何,当我通过http://localhost.localhost:3000/users/1/configurations/运行它时,会弹出错误!(是的,我使用了嵌套路由)

所以我点击rails控制台检查Configuration.all返回的内容,你瞧

2.0.0-p247 :004 > Configuration.all
  Configuration Load (0.3ms)  SELECT "configurations".* FROM "configurations"
 => #<ActiveRecord::Relation [#<Configuration id: 1, user_id: 1, port: 3000, host: "example.org", annoy: 5000, version: "1", machines: nil, created_at: "2013-08-08 02:15:32", updated_at: "2013-08-08 02:15:32">]>

我有点迷茫,为什么该方法在 rails 控制台中有效,然后在浏览器的 html 视图中失败。我做错什么了吗?

另外,这是 webrick 上的输出,以防有人查找

Started GET "/users/1/configurations/" for 192.168.1.105 at 2013-08-08 10:24:59 +0800
Processing by ConfigurationsController#index as HTML
  Parameters: {"user_id"=>"1"}
Completed 500 Internal Server Error in 1ms

NoMethodError (undefined method `all' for ActiveSupport::Configurable::Configuration:Class):
  app/controllers/configurations_controller.rb:8:in `index'
4

1 回答 1

9

不幸的是,您创建了一个类,其名称也是 Rails API 的一部分(尽管在不同的命名空间中)。您的类恰好位于顶级命名空间中,而 Rails 类嵌套在ActiveSupport::Configurable命名空间中。引用时实际会得到哪个类Configuration取决于引用代码的位置。

要指定您希望该类位于顶级命名空间,您可以将您的类称为::Configuration.

这是一个简化的测试来演示正在发生的事情:

# Let's say this module & class is defined by a library (e.g. Rails)
module Configurable  # analogous to ActiveSupport::Configurable
  class Configuration  # analogous to ActiveSupport::Configurable::Configuration
  end
end
class ControllerBase  # analogous to ActionController::Base
  # ActionController::Base includes ActiveSupport::Configurable.
  # You can confirm this in Rails 4 that this returns true:
  #   ActionController::Base.included_modules.include? ActiveSupport::Configurable
  include Configurable
end

# This is your class and constant
class Configuration
end

class MyController < ControllerBase
  # This is analogous to code inside your Controller.
  # Inheriting gives you access to the constants in the parent
  def wrong_class
    Configuration  # oops, we wanted the top-level
  end
  def correct_class
    ::Configuration
  end
end

# top-level scope
p(top_level_access: Configuration.name)  # 'Configuration'
p(nested_access: MyController.new.wrong_class.name)  # 'Configurable::Configuration'
p(scoped_nested_access: MyController.new.correct_class.name)  # 'Configuration'

编辑 - 回复@maru 的评论:

在大多数情况下,您可以只使用Configuration.name来获取类的全命名空间名称。在控制台上试试这个。

如果您Rails.logger.info(Configuration.name)在控制器内部尝试,您可能会ActiveSupport::Configurable::Configuration在日志中看到。

于 2013-08-08T03:27:48.140 回答