0

在rails 3中,我正在使用设计注册...单击应用(提交)按钮后,我的路径应重定向到配置文件显示页面..我该如何实现这一点。

你能指导我应该在路线文件中添加什么吗?这是我的路线

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

2 回答 2

0

如果要在 profile_show 视图中显示单个配置文件。然后,您可以使用此代码重定向 profile_show 操作。
redirect_to :action => :profile_show, :id => @id
然后将显示相应的 profile_show 视图。

于 2012-07-09T07:50:07.790 回答
0

使用 aredirect_to profile_show_path重定向。路径名将取决于您的rake routes.

于 2012-07-09T07:05:33.687 回答