如何將布爾值賦予會話屬性並從另一個地方讀取/檢查它?在jRuby/ruby on rails中爲會話屬性指定布爾值
這是正確的方法嗎?
勘定:
<% session[:contacts_available]=true %>
檢查值:
<% 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 %>