我正在使用Devise替换我的应用程序中的现有身份验证系统,我遇到了一些麻烦。
我在登录表单下面有这四个链接:
Devise::RegistrationsController
)Users::PasswordsController
)Devise::ConfirmationsController
)Devise::UnlocksController
)所有这四个链接都重定向回登录页面,我无法找出原因。我在服务器日志中看到这些链接正在击中相应的控制器,但它甚至没有呈现预期的页面 - 它只是重定向回登录页面。
知道为什么会这样吗?
编辑:以下是这些链接的代码(在app/views/devise/shared/_links.html.erb
中):
<%- if devise_mapping.registerable? && controller_name != 'registrations' %>
<%= link_to "Sign up", new_registration_path(resource_name) %><br />
<% end -%>
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %>
<%= link_to "Forgot your password?", new_password_path(resource_name) %><br />
<% end -%>
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
<%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) %><br />
<% end -%>
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
<%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) %><br />
<% end -%>