编辑/更新用户时重定向(有错误)

时间:2011-05-06 08:43:36

标签: ruby-on-rails ruby-on-rails-3 devise

我想在我的项目中更新/编辑我自己的表单中的设计用户,但问题是我无法在“request.referer”上重定向更新。

我已经阅读过,但它对我不起作用:https://github.com/plataformatec/devise/wiki/How-To:-Customize-the-redirect-after-a-user-edits-their-profile ......以及其他维基页面。

好的,所以我的代码是:

#/views/backend/perso.html.erb
<%= form_for(@user, :url => registration_path(@user), :html => { :method => :put }) do |f| %>
  <% if @user.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(form.errors.count, "error") %> prohibited this data from being saved:</h2>

      <ul>
      <% @user.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </div>
# Other fields ...
  <div class="field">
    <%= f.label :email %><br />
    <%= f.email_field :email %>
  </div>

  <div class="field">
    <%= f.label :current_password %> <i>(we need your current password to confirm your changes)</i><br />
    <%= f.password_field :current_password %>
  </div>

  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

因此用户在该页面上,并更新他的数据。问题,我被重定向到/ users / 我试图将其添加到路线:

#config/routes.rb
devise_for :users do
    get "users", :to => "backend#perso", :as => :user_root # Rails 3
end

甚至是应用程序控制器:

#/controllers/application_controller.rb
private
def after_update_path_for(resource)
  backend_perso_path
end

但仍然没有工作。

感谢有人试图帮助我!

修改

当更新没有生成错误时,我会被重定向到我想要的页面(通过在我的应用程序控制器中添加after_update_path_for),但是当存在错误时,它会显示/view/devise/registration/edit.html.erb

更新

好的,所以我按照以下方式覆盖了Devise控制器: https://github.com/plataformatec/devise/wiki/How-To%3a-Allow-users-to-edit-their-account-without-providing-a-password

所以我在registrations_controller中的代码看起来就是那个

#controllers/registrations_controller.rb
class RegistrationsController < Devise::RegistrationsController
  def update
    # Devise use update_with_password instead of update_attributes.
    # This is the only change we make.
    if resource.update_attributes(params[resource_name])
      set_flash_message :notice, :updated
      # Line below required if using Devise >= 1.2.0
      sign_in resource_name, resource, :bypass => true
      redirect_to after_update_path_for(resource)
    else
      clean_up_passwords(resource)
      redirect_to backend_perso_path # That's the line I need to change
    end
  end
end

我现在可以重定向到我想要的页面,但我不知道如何显示错误发生了!

3 个答案:

答案 0 :(得分:3)

使用Rails Routing from the Outside In

中描述的“不太优雅”的硬编码user_root,通过How To: Customize the redirect after a user edits their profile进行简单回答
#config/routes.rb
match 'user_root' => redirect("/wherever/you/want")

答案 1 :(得分:2)

我没有得到任何有用的答案(感谢Laurent的解决方案!)所以这是我的代码到目前为止。

做好工作,但不是很干净。

class RegistrationsController < Devise::RegistrationsController
  def update
    # Devise use update_with_password instead of update_attributes.
    # This is the only change we make.
    if resource.update_attributes(params[resource_name])
      set_flash_message :notice, :updated
      # Line below required if using Devise >= 1.2.0
      sign_in resource_name, resource, :bypass => true
      redirect_to after_update_path_for(resource)
    else
      clean_up_passwords(resource)
      redirect_to after_update_path_for(resource), :flash => { :alert => "Error message" }
    end
  end

  private
  # Redirect to the URL after modifying Devise resource (Here, our user)
  def after_update_path_for(resource)
    my_path
  end
end

答案 2 :(得分:0)

我不使用设计,但我在omniauth上遇到了类似的问题。 OmniAuth有一个引用或原始方法,但它对我来说不适合创建帐户。所以我所做的是将源页面存储在会话变量中的脏黑客,并在执行操作后对其进行检查。