2016-11-15 54 views
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 

回答

1
resources :huddles do 
    get '/welcome', to: 'huddles#index', :as => :huddles_path 
    resources :invitations 
    end 

只需添加一個:爲=>:namethatyouwant

1

移動huddles資源之外的途徑,如果你不想以包括路線huddles/

resources :huddles do 
    resources :invitations 
end 

get '/welcome', to: 'huddles#index' 
+0

我想用'huddles_path'去'/ welcome'。這似乎並沒有這樣做。 – tidelake