我有这两条路线
get '/opportunities/:id(/:tab_name)' => 'opportunities#show', as: 'opportunity'
get '/opportunities/:id/edit' => 'opportunities#edit', as: 'edit_opportunity'
但当然,该edit
路线不起作用,因为它是作为:tab_name
. 我怎样才能edit
破例?
谢谢。