2012-07-09 89 views
0

在rails 3我使用設計註冊...點擊應用(提交)按鈕後,我的路徑應該重定向到配置文件顯示頁面..我如何實現這一點。從設計註冊重定向到配置文件顯示頁面

你能指導我什麼,我應該添加在路線文件。 這裏是我的路線

devise_for :users do 
    get '/users/sign_out' => 'devise/sessions#destroy' 
    get '/users/select_type' => 'devise/registrations#select_type' 
end 
+0

你想查看個人檔案嗎? – 2012-07-09 07:46:50

回答

0

使用redirect_to profile_show_path重定向。路徑名稱取決於您的rake routes

0

如果您想在profile_show視圖中顯示個人配置文件。然後,您可以使用此代碼重定向profile_show操作。
redirect_to :action => :profile_show, :id => @id
然後顯示相應的profile_show視圖。

相關問題