ruby-on-rails – Rails设计:user_signed_in?不工作

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails设计:user_signed_in?不工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我认为这一点
<% if user_signed_in? %>
<%= current_user.email %>
<% else %>
<%= link_to "Sign in",new_user_session_path %><br />
<%= link_to "Opret",new_user_session_path %><br />
<% end %>

但是当以用户身份登录时:
我仍然看到链接

<%= link_to "Sign in",new_user_session_path %><br />

为什么帮手不工作?

解决方法

您在控制器中使用过滤器之前的设计?
before_filter :authenticate_user!
原文链接:https://www.f2er.com/ruby/273859.html

猜你在找的Ruby相关文章