我知道在 Rails 中创建控制器的基本命令是使用 Rails 生成控制器
但是在代码中,我在下面看到了类似这样的结构,并且想知道如何做到这一点?
结构如下所示:
生成的代码看起来像这样,我需要类似的东西:
module Performance
class BaseController < ApplicationController
end
end
module Performance
class GroupsController < BaseController
def show
end
def index
end
end
end