0

我已经完成了这个命令: rails g controller father/child它为我生成了这个:

class Father::ChildController < ApplicationController
end

我的目标是拥有这个:

module Father
  class ChildController < ApplicationController

  end
end

这两个是一样的吗?或者我应该以不同的方式使用生成控制器来实现该模块的语法?

4

1 回答 1

3

They not the same. The second one is equivalent to the following:

class Father::ChildController < Father::ApplicationController
end
于 2013-06-17T18:05:05.090 回答