1

我正在寻找一种方法来使用类似于link_to_unless_current但用于子 URL 的东西,例如对于这两个 URL:

/entity_name/
/entity_name/123

不会导致链接。我怎样才能在 Rails 中实现这一点?

UPD:以我自己的自定义方式解决了它,请精通Ruby的人告诉我它是否好。

module ApplicationHelper

  def link_to_unless_current_or_sub(name, options = {}, html_options = {}, &block)
    link_to_unless current_page_or_sub?(options), name, options, html_options, &block
  end

private

  def current_page_or_sub?(options)
    url_string = CGI.unescapeHTML(url_for(options))
    request = @controller.request
    if url_string.index("?")
      request_uri = request.request_uri
    else
      request_uri = request.request_uri.split('?').first
    end

    request_uri.starts_with?(url_string)
  end

end

用法:

<%= link_to_unless_current_or_sub("Users", users_path) %>
4

2 回答 2

0

在 Rails 3.2 中工作,并进行了一些小的调整

def current_page_or_sub?(options)
  url_string = CGI.unescapeHTML(url_for(options))
  if url_string.index("?")
    request_url = request.fullpath
  else
    request_url = request.fullpath.split('?').first
  end
  request_url.starts_with?(url_string)
end
于 2013-10-21T16:08:53.850 回答
0

我认为不存在这样的辅助方法

你必须写如下的东西

<% if params[:id] %>
       "Home"
<% else %>
       <%= link_to "Home", { :action => "index" }) %>
<% end %>
于 2010-05-27T14:39:13.067 回答