这是我的一些代码:
resources :things
post "/foo/bar" => "things#create"
是否有一种更简洁/可维护的方式来定义resources
块内的自定义帖子路径?
答案 0 :(得分:0)
要回答标题问题,请在路线文件中使用:
resources :things do
post 'foo/bar', on: :member, to: 'things#create'
end
如果您要在things
路径而不是foo
下创建所有 things
路由,请使用path
参数{ {1}}致电:
resources