许多用户(但不是全部)在使用带有可确认模块的设备的当前Rails应用程序中遇到此问题。
他们在确认帐户后尝试登录。 但输入密码后,系统会提示以下两条消息:
"您必须在继续之前确认自己的帐户。
您的帐户已成功确认。"
这是矛盾的。
我的数据库显示所有此类用户已确认。最后,一旦删除缓存和cookie,这个错误就会消失,然后他们就可以登录了。
这是我为ConfirmationController
修改的代码的一部分class ConfirmationsController < Devise::ConfirmationsController
def show
self.resource = resource_class.confirm_by_token(params[:confirmation_token])
yield resource if block_given?
if resource.errors.empty?
set_flash_message(:notice, :confirmed) if is_flashing_format?
sign_in_and_redirect(resource_name, resource) # <= THIS LINE ADDED
# respond_with_navigational(resource){ redirect_to after_confirmation_path_for(resource_name, resource) } # <= THIS LINE R
else
respond_with_navigational(resource.errors, :status => :unprocessable_entity){ render :new }
end
end