我有一个类别模型,在我的 routes.rb 中,我有
resources :categories
它生成以下一组路线。
categories_path GET /categories(.:format) categories#index
POST /categories(.:format) categories#create
new_category_path GET /categories/new(.:format) categories#new
edit_category_path GET /categories/:id/edit(.:format) categories#edit
category_path GET /categories/:id(.:format) categories#show
PATCH /categories/:id(.:format) categories#update
PUT /categories/:id(.:format) categories#update
DELETE /categories/:id(.:format) categories#destroy
现在,我需要的是除了所有 GET 路由之外,我希望其余的路由都在“/admin”范围内。这样可以在 admin/categories/:id/edit 等处访问创建、编辑和删除等操作。
有没有一种简单的方法来提及这个范围?