Stan Blog

學習過程中的一些記錄

[Rails] Routing 的 Namespace

Namespace 是 Scope 的一種特定應用,這樣會影響整組 controller、網址 path、URL Helper 前置名稱

namespace :admin do
  resources :products
end

controller 會是 Admin::ProductsController 網址會是 /admin/products

URL Helper 會是 admin_products_path

Comments

comments powered by Disqus