如何写一个页面可以向 show 那样接受参数,路由中该怎么写?
resources :nodes do
collection do
get :time_more
get :circle_more
get :search_list
get :details_one
get :details_two
get :circle_details
get :circle_three
get :find_circle
get :foucs/:name/
end
end
这样语法错误吧
如果只是用 ID 作为路由参数,你可以试试member
.参考 Rails guide
如果是想自定义路由参数,可以试试这个param
resources :notes, param: :identifier
Ps: 其实我看错了,用member
不也挺好麽。
另外多个collection
可以写在一起:
resources :notes do
collection do
get :get :time_more, :circle_more
end
end