我有一个包含两个块的 ERB 视图:
<%= test_h1 do %>
<%= 'test1' %>
<% end -%>
<%= test_h2 do %>
<%= 'test2' %>
<% end -%>
wheretest_h1
和test_h2
是类似的助手,但是一个在助手文件中定义,而另一个helper_method
在控制器中定义:
module TestHelper
def test_h1(&block)
link_to '/url' do
capture(&block)
end
end
end
class TestController < ApplicationController
helper_method :test_h2
def test_h2(&block)
helpers.link_to '/url' do
helpers.capture(&block)
end
end
end
test_h1
产生预期的结果并test_h2
首先渲染内部模板块:
<a href="/url">test1</a>
test2<a href="/url"></a>
为什么?什么是惯用的写作方式test_h2
?