Rails - 设计 - 未出现重定向和成功消息
Rails - Devise - Redirect & Success message not occuring
我在 Rails 中成功更改了我的密码,但是没有出现成功的闪光通知(除非我刷新页面,用户不应该这样做)。这是设计问题吗?
我第一次到达时的页面状态 -
输入密码后的页面'Change My Password' -
刷新后的页面
好的,我解决了,默认 rails 行为是转到 root_path。我添加了这段代码,没问题
class PasswordsController < Devise::PasswordsController
skip_before_filter :require_no_authentication, only: [:edit, :update]
protected
def after_resetting_password_path_for(resource_name)
password_success_path
end
end
我在 Rails 中成功更改了我的密码,但是没有出现成功的闪光通知(除非我刷新页面,用户不应该这样做)。这是设计问题吗?
我第一次到达时的页面状态 -
输入密码后的页面'Change My Password' -
刷新后的页面
好的,我解决了,默认 rails 行为是转到 root_path。我添加了这段代码,没问题
class PasswordsController < Devise::PasswordsController
skip_before_filter :require_no_authentication, only: [:edit, :update]
protected
def after_resetting_password_path_for(resource_name)
password_success_path
end
end