我发现您可以content_for
查看 Rails 源代码。https://github.com/rails/rails/blob/master/actionpack/lib/action_view/helpers/capture_helper.rb
导轨来源:
def content_for(name, content = nil, options = {}, &block)
if content || block_given?
if block_given?
options = content if content
content = capture(&block)
end
if content
options[:flush] ? @view_flow.set(name, content) : @view_flow.append(name, content)
end
nil
else
@view_flow.get(name)
end
end
我正在尝试设置options[:flush] = true
,但遇到了一些麻烦。在我下面options[:flush]
的代码中没有评估为真。
我的代码:
content_for(affiliate_link_pos.to_sym, {:flush=>true}) do
render page
end
编辑:我也尝试过传递第三个参数(内容),但我得到了wrong number of argument error (3 for 2)
.
content_for(affiliate_link_pos.to_sym, "true", {:flush=>true}) do