答案 0 :(得分:4)
你应该look at this tutorial - 你会从中受益匪浅!
从本质上讲,你可以做你要求的事情(我们已经做了几次)。您只需在命名空间和命名空间中创建控制器。 “标准”路线,以及独立路由到两组控制器:
#config/routes.rb
resources :pages, only: [:show, :index]
namespace :admin do
resources :pages, only: [:new, :edit, :create]
end