我正在尝试检查用户会话是否未激活
<% if user_signed_in?! %>
<div class="homeActions">
<%= link_to "Become a Host", new_host_path, class: "btn btn-lg btn-success" %>
</div>
<% end %>
答案 0 :(得分:7)
您可以使用
<% if !user_signed_in? %>
或
<% if not user_signed_in? %>
或
<% unless user_signed_in? %>
!
和not
否定前面的布尔表达式,而unless
与if
完全相反。