セッション属性にブール値を割り当て、別の場所から読み込み/チェックする方法はありますか?jRuby/Ruby on Rubyのセッション属性にブール値を割り当てる
これは正しい方法ですか?
は割り当て:あなたが明示的にそれがtrue
ているかどうかを確認したい場合はtruthy
、
<% if session[:contacts_available]? %>
<p> Donec interdum turpis eget leo lobortis, sit amet lacinia ante vulputate. Maecenas hendrerit
euismod nulla in semper. Donec arcu nibh, faucibus at posuere id, dapibus non tellus. </p>
<% else %>
<p> You're logged in as : <%= current_user.email %> <%= link_to "Log Out", logout_path %> </p>
<p> Welcome to our service. You currently don't have any contact details under your username.
Please fill the below form to show the first contact detail of yours. </p>
<% end %>