Viget Labs 发布了一篇文章和要点,详细介绍了一个 rails 辅助方法,如果它的 url 与当前路径匹配,则该方法用于将特定类(如.selected
或)添加到导航链接。.active
您可以像这样在布局中使用它:
= nav_link "News", articles_path, {class: "btn btn-small"}
<!-- which creates the following html -->
<a href="/articles" class="btn btn-small selected">News</a>
好的。我正在使用引导程序,并且希望在我的按钮中有一个图标,所以我需要生成以下 html:
<a href="/articles" class="btn btn-small selected"><i class="icon-home"> </i> News</a>
我分叉了要点并想出了一个简单的方法。我的 fork 让开发人员将:inner_html和:inner_class传递给助手,如下所示:
= nav_link "News", articles_path, {class: "btn btn-small"}, {inner_html: 'i', inner_class: 'icon-home'}
它工作正常,但我不喜欢我的底层实现:
def link
if @options[:inner_html]
link_to(@path, html_options) do
content_tag(@options[:inner_html], '', :class => @options[:inner_class]) + " #{@title}"
end
else
link_to(@title, @path, html_options)
end
end
如您所见,我将新选项传递到content_tag
link_to 方法的块内。我希望我能够以几种方式重构它。
首先,在我看来,我希望能够做到这一点:
= nav_link "News", articles_path, {class: "btn btn-small"} do
%i.icon-home
我想将内部 html 作为一个块,而不是作为选项哈希的属性。谁能给我任何关于如何实现这一目标的指示?
我认为这是告诉 nav_link 方法接受一个块的简单案例:
def nav_link(title, path, html_options = {}, options = {}, &block)
LinkGenerator.new(request, title, path, html_options, options, &block).to_html
end
class LinkGenerator
include ActionView::Helpers::UrlHelper
include ActionView::Context
def initialize(request, title, path, html_options = {}, options = {}, &block)
@request = request
@title = title
@path = path
@html_options = html_options
@options = options
@block = block
end
def link
if @block.present?
link_to @path, html_options do
@block.call
@title
end
end
end
但这无法输出图标,而是插入了一个数字 (4)。我不太清楚。任何人都得到任何建议。我可以去哪里阅读更多关于这类事情的信息,因为我真的希望能够弄清楚这样的事情,而不必在 stackoverflow 上询问。