我正在寻找一种方法来使用类似于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) %>