0
我有以下Rails 5資源,並且我希望URL huddles#index
(以及huddles_path
url助手)顯示/welcome
。例如,我不想要huddles_welcome_path
。這可以做到嗎?謝謝!Rails 5重命名CRUD路由
resources :huddles do
get '/welcome', to: 'huddles#index'
resources :invitations
end
我想用'huddles_path'去'/ welcome'。這似乎並沒有這樣做。 – tidelake