gpt4 book ai didi

ruby-on-rails - ActionController::RoutingError(未初始化常量 BaseController)

转载 作者:太空宇宙 更新时间:2023-11-03 17:43:17 24 4
gpt4 key购买 nike

我在 app/controllers/v1/white_label_api 中创建 Controller

class Api::WhiteLabel::V1::BaseController < ApplicationController
end

在我做的其他 Controller 中

class Api::WhiteLabel::V1::CarMakeController < BaseController

但它给出了一个未初始化常量BaseController的错误

最佳答案

是的,它将是未定义的,因为您已经在模块命名空间中创建了 Controller 。您可以通过为基础提供适当的命名空间来简单地解决这个问题。

class Api::WhiteLabel::V1::CarMakeController < Api::WhiteLabel::V1::BaseController

或者

module Api::WhiteLabel::V1
class CarMakeController < BaseController

关于ruby-on-rails - ActionController::RoutingError(未初始化常量 BaseController),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49487881/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com