2023-11-30 03:38PM
想要实现只有在 mysite.com 才可以看到 "登录",“退出" 按钮
<% if session[:current_user].blank? %>
<%= link_to '登录', '/users/show_login_page', style: 'text-decoration: none; color: white;' %>
<% elsif !session[:current_user].blank? %>
<%= link_to '退出', '/users/logout', method: :delete, style: 'text-decoration: none; color: white;' %>
<% end %>
修改如下:
<% if session[:current_user].blank? %>
修改为
<% if session[:current_user].blank? && request.host != "mysite.com" && request.host_with_port != "ha.mysite.com" && request.host_with_port != "hi.mysit.com:3000" %>
就可以实现了
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论