當你需要加入一個或多個動作至一個 RESTful 資源時(你真的需要嗎?),使用 member and collection 路由。
# 差
get 'subscriptions/:id/unsubscribe'
resources :subscriptions
# 好
resources :subscriptions do
get 'unsubscribe', on: :member
end
# 差
get 'photos/search'
resources :photos
# 好
resources :photos do
get 'search', on: :collection
end
若你需要定義多個 member/collection 路由時,使用替代的區(qū)塊語法(block syntax)。
resources :subscriptions do
member do
get 'unsubscribe'
# 更多路由
end
end
resources :photos do
collection do
get 'search'
# 更多路由
end
end
使用嵌套路由(nested routes)來更佳地表達與 ActiveRecord 模型的關(guān)系。
class Post ActiveRecord::Base
has_many :comments
end
class Comments ActiveRecord::Base
belongs_to :post
end
# routes.rb
resources :posts do
resources :comments
end
使用命名空間路由來群組相關(guān)的行為。
namespace :admin do
# Directs /admin/products/* to Admin::ProductsController
# (app/controllers/admin/products_controller.rb)
resources :products
end
不要在控制器里使用留給后人般的瘋狂路由(legacy wild controller route)。這種路由會讓每個控制器的動作透過 GET 請求存取。
# 非常差
match ':controller(/:action(/:id(.:format)))'
您可能感興趣的文章:- 關(guān)于Ruby on Rails視圖編寫的一些建議
- Ruby on Rails中的ActiveResource使用詳解
- 詳解Ruby on Rails中的Cucumber使用