我已经完成了这个命令: rails g controller father/child
它为我生成了这个:
class Father::ChildController < ApplicationController
end
但我的目标是拥有这个:
module Father
class ChildController < ApplicationController
end
end
这两个是一样的吗?或者我应该以不同的方式使用生成控制器来实现该模块的语法?
我已经完成了这个命令: rails g controller father/child
它为我生成了这个:
class Father::ChildController < ApplicationController
end
但我的目标是拥有这个:
module Father
class ChildController < ApplicationController
end
end
这两个是一样的吗?或者我应该以不同的方式使用生成控制器来实现该模块的语法?