2
我正在構建Rails引擎。我這樣定義的控制器,Rails在加載模塊鏈時遇到了問題
module A::B::C::D::E
extend ActiveSupport::Concern
# module stuff ...
end
class ExamplesController < ApplicationController
include A::B::C::D::E
# controller stuff ...
end
當我開始了Rails控制檯,rails console
,我得到以下錯誤,
uninitialized constant A::B (NameError)
爲什麼我得到這個錯誤?