我正在合并两个应用程序学校和孩子。每个工作都很好,儿童应用程序嵌套在学校应用程序中。他们每个人都有自己的数据库。这是学校应用程序树的一部分:
app/controllers/application_controller.rb
app/controllers/user.rb
....
app/controllers/children/application_controller.rb
app/controllers/children/user.rb ....
并有这些警告:
Children::ApplicationController 引用的顶级常量 ApplicationController Children::
User 引用的顶级常量 User
在 app/controllers/children/application_controller.rb 我有
class Children::ApplicationController < ActionController::Base
在 app/controllers/application_controller.rb 我有
class class ApplicationController < ActionController::Base
未加载嵌套的 ApplicationController。命名空间不起作用?