0

我正在设置我的导航栏link_to,如果 current_path 与 link_path 相同或当前路径与根路径相同,我试图停止呈现链接,因为根路径被定义为与链接路径相同,如下:

_navbarhtml.erb

        <ul class="nav navbar-nav navbar-right">
         <% if user_signed_in? %>               
           <li><%= link_to_unless_current('My Quotes', quotes_path(current_user)) do %></li>
         <% end %>
           <li><%= link_to_unless_current('New Quote', new_quote_path) do %></li>
         <% end %>
           <li><%= link_to('My Account', edit_user_registration_path) %></li>
           <li><%= link_to "Sign out", destroy_user_session_path, :method => :delete %></li>
         <% else %>
           <li><%= link_to('Sign in', new_user_session_path) %></li>
           <li><%= link_to('Sign up', new_user_registration_path) %></li>
         <% end %>
        </li>

路线.rb

root    'quotes#new'

关于如何很好地写这个的任何巧妙的建议?

4

2 回答 2

1

你可以试试current_page?。像这样创建一个辅助方法:

def link_to_unless_current(text, url, options={})
  if current_page?(url)
    # do something else? maybe create a text which does not have a link?
  else
    link_to text, url, options
  end
end

现在,视图将如下所示:

<%= link_to_unless_current('My Quotes', quotes_path(current_user)) %>

随意更改辅助方法的名称。

于 2017-06-19T09:16:20.697 回答
0

谢谢Surya,这就是我最终让它工作的方式:

application_helper.rb

def link_to_unless_current_or_root(text, url)
    if current_page?(url) 

    elsif current_page?(root_path)

    else
        link_to text, url
    end
end

_navbar.html.erb

<li><%= link_to_unless_current_or_root('New Quote', new_quote_path) %></li>
于 2017-06-19T09:49:24.763 回答