我已经完成了这个命令:rails g controller father/child
并且它已经为我生成了这个命令:
class Father::ChildController < ApplicationController
end
但我的目标是:
module Father
class ChildController < ApplicationController
end
end
这两个是一样的吗?或者我应该以不同的方式使用生成控制器来实现该模块的语法?
答案 0 :(得分:3)
他们不一样。第二个等同于以下内容:
class Father::ChildController < Father::ApplicationController
end