Rails routing guide没有指定:on => :collection是什么意思。
我找不到关于什么是:on密钥的解释,也找不到在那个上下文中什么是:collection。
发布于 2012-10-25 16:55:11
集合上的路由被列出为here。
:on => :collection和:on => :member之间的区别在于它们生成的路由样式及其关联的路由助手。
resources :posts do
# on collection
get 'search', on: :collection
# --> generates '/posts/search' and search_posts_path
# on member
get 'share', on: :member
# --> generates'/posts/:id/share' and share_photo_path(@post)
endhttps://stackoverflow.com/questions/13064844
复制相似问题