ActionController::RoutingError: uninitialized constant Api::V1::ApiController
ActionController::RoutingError: uninitialized constant Api::V1::ApiController
我有 Rails 5 API 项目用于控制用户任务,我有以下错误,但并非总是针对相同的控制器和路由。
ActionController::RoutingError: uninitialized constant Api::V1::ApiController
我稍微描述一下我的项目,以便更详细地解释错误。
应用结构
路线
scope module: 'api' do
namespace :v1 do
# => Login routes
scope module: 'login' do
match 'login', to: 'sessions#login', as: 'login', via: :post
end
# => Team routes
scope module: 'team' do
# => no admin routes
resources :tasks, except: [:index] do
collection do
match ':view', to: 'tasks#index', as: 'tasks', via: [:get, :post]
end
end
end
end
end
API控制器
module Api
class ApiController < ApplicationController
def respond_with_errors(object)
render json: {errors: ErrorSerializer.serialize(object)}, status: :unprocessable_entity
end
end
end
团队负责人
module Api::V1
class Team::TeamController < ApiController
任务控制器
module Api::V1
class Team::TasksController < Team::TeamController
登录控制器
module Api::V1
class Login::LoginController < ApiController
会话控制器
module Api::V1
class Login::SessionsController < Login::LoginController
当我执行登录路由和任务路由后,最后一条路由和团队模块中的所有路由都出现错误。如果我更改项目并保存它(只有一个空白space)然后我执行任务路由和登录路由后,我在最后一个路由和登录模块中的所有路由中得到错误。
没有任何意义...
Rails 服务器出现此错误
您应该在继承时使用正确的常量 - ::Api::ApiController
:
module Api::V1
class Team::TeamController < ::Api::ApiController
因为否则它正在搜索 Api::V1::ApiController
,但应该搜索 Api::ApiController
现在你有 Api::ApiController
.
您的 app/controllers/api/v1/api_controller.rb
在命名空间
中缺少 V1
module Api::V1
class ApiController < ApplicationController
..
end
end
更新
如果您的 ApiController
在 V1
文件夹之外,那么您应该这样做
module Api::V1
class Team::TeamController < ::Api::ApiController
我有 Rails 5 API 项目用于控制用户任务,我有以下错误,但并非总是针对相同的控制器和路由。
ActionController::RoutingError: uninitialized constant Api::V1::ApiController
我稍微描述一下我的项目,以便更详细地解释错误。
应用结构
路线
scope module: 'api' do
namespace :v1 do
# => Login routes
scope module: 'login' do
match 'login', to: 'sessions#login', as: 'login', via: :post
end
# => Team routes
scope module: 'team' do
# => no admin routes
resources :tasks, except: [:index] do
collection do
match ':view', to: 'tasks#index', as: 'tasks', via: [:get, :post]
end
end
end
end
end
API控制器
module Api
class ApiController < ApplicationController
def respond_with_errors(object)
render json: {errors: ErrorSerializer.serialize(object)}, status: :unprocessable_entity
end
end
end
团队负责人
module Api::V1
class Team::TeamController < ApiController
任务控制器
module Api::V1
class Team::TasksController < Team::TeamController
登录控制器
module Api::V1
class Login::LoginController < ApiController
会话控制器
module Api::V1
class Login::SessionsController < Login::LoginController
当我执行登录路由和任务路由后,最后一条路由和团队模块中的所有路由都出现错误。如果我更改项目并保存它(只有一个空白space)然后我执行任务路由和登录路由后,我在最后一个路由和登录模块中的所有路由中得到错误。
没有任何意义...
Rails 服务器出现此错误
您应该在继承时使用正确的常量 - ::Api::ApiController
:
module Api::V1
class Team::TeamController < ::Api::ApiController
因为否则它正在搜索 Api::V1::ApiController
,但应该搜索 Api::ApiController
现在你有 Api::ApiController
.
您的 app/controllers/api/v1/api_controller.rb
在命名空间
V1
module Api::V1
class ApiController < ApplicationController
..
end
end
更新
如果您的 ApiController
在 V1
文件夹之外,那么您应该这样做
module Api::V1
class Team::TeamController < ::Api::ApiController