Rails 5 重命名 CRUD 路由
Rails 5 rename CRUD route
我有以下 Rails 5 个资源,我希望 URL 在 huddles#index
上显示 /welcome
(以及 huddles_path
url 帮手)。例如,我不想要 huddles_welcome_path
。这可以做到吗?谢谢!
resources :huddles do
get '/welcome', to: 'huddles#index'
resources :invitations
end
如果您不想在路线中包含 huddles/
,请将路线移到 huddles
资源之外:
resources :huddles do
resources :invitations
end
get '/welcome', to: 'huddles#index'
resources :huddles do
get '/welcome', to: 'huddles#index', :as => :huddles_path
resources :invitations
end
只需添加一个 :as => :namethatyouwant
我有以下 Rails 5 个资源,我希望 URL 在 huddles#index
上显示 /welcome
(以及 huddles_path
url 帮手)。例如,我不想要 huddles_welcome_path
。这可以做到吗?谢谢!
resources :huddles do
get '/welcome', to: 'huddles#index'
resources :invitations
end
如果您不想在路线中包含 huddles/
,请将路线移到 huddles
资源之外:
resources :huddles do
resources :invitations
end
get '/welcome', to: 'huddles#index'
resources :huddles do
get '/welcome', to: 'huddles#index', :as => :huddles_path
resources :invitations
end
只需添加一个 :as => :namethatyouwant