内容简介:翻译自:https://stackoverflow.com/questions/17816315/i-am-using-devise-the-password-change-is-redirecting-to-home-page-how-to-keep
我正在使用devise,视图文件是/devise/registrations/edit.html.erb(我没有对它进行任何更改):
<div><%= f.label :password %> <%= f.password_field :password, :autocomplete => "off" %></div> <div><%= f.label :password_confirmation %> <%= f.password_field :password_confirmation %></div> <% if f.object.encrypted_password.present? %> <div><%= f.label :current_password %> <i>(we need your current password to confirm your changes)</i><br /> <%= f.password_field :current_password %></div> <% end %> <div><%= f.submit "Update" %></div>
当用户更改密码时,他们将被重定向到root_url(主页).我想将它们保存在更改密码页面,即/ users / edit.我该怎么做?
编辑 – 我有编辑方法的registration_controller,我应该添加什么?
首先,OP在更改密码后有重定向问题,在设计中更改密码在RegistrationsController中,而PasswordsController用于“重置密码”. FYI @ amesee重置密码后重定向的答案.更改密码和重置密码是不同的
How To: Customize the redirect after a user edits their profile 并见 after_update_path_for(resource)
您应该在registrations_controller.rb上添加after_update_path_for(resource)方法,如下所示:
class RegistrationsController < Devise::RegistrationsController protected def after_update_path_for(resource) root_path end end
翻译自:https://stackoverflow.com/questions/17816315/i-am-using-devise-the-password-change-is-redirecting-to-home-page-how-to-keep
以上所述就是小编给大家介绍的《ruby-on-rails – 我正在使用Devise,密码更改是重定向到主页,如何保持/ users / edit?》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- Tomcat集群之会话保持
- Tomcat集群之会话保持
- 程序员如何保持健康
- tomcat的session会话保持方案
- 保持安全控制范围成功保护混合云
- ios – reloadRowsAtIndexPaths时保持偏移量
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
算法设计与分析基础
Anany Levitin / 清华大学出版社 / 2007-11 / 59.00元
作者基于丰富的教学经验,开发了一套对算法进行分类的新方法。这套方法站在通用问题求解策略的高度,能对现有的大多数算法进行准确分类,从而使读者能够沿着一条清晰的、一致的、连贯的思路来探索算法设计与分析这一迷人领域。本书作为第2版,相对第1版增加了新的习题,还增加了“迭代改进”一章,使得原来的分类方法更加完善。 本书十分适合作为算法设计和分析的基础教材,也适合任何有兴趣探究算法奥秘的读者使用,只要......一起来看看 《算法设计与分析基础》 这本书的介绍吧!