2016-11-15 7 views
0

私は以下のRails 5リソースを持っています。/welcomehuddles#indexhuddles_path urlヘルパーと同様)に表示します。たとえば、私はhuddles_welcome_pathを望んでいません。これはできますか?ありがとうございました!Rails 5 CRAMEルートの名前を変更

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

関連する問題