我喜欢使用Haml助手,但多年来事情发生了一些变化。旧方法只是连接到缓冲区。这就是我所拥有的:
def confirmation_table(field)
# Be certain that if the user is logged in, his/her email and name show
if field.respond_to? :user
haml_tag('tr') {
haml_tag('th', 'Email:')
haml_tag('td', field.user.email)
}
haml_tag('tr') {
haml_tag('th', 'Name:')
haml_tag('td', field.user.full_name)
}
else
haml_tag('tr') {
haml_tag('th', 'User Information:')
haml_tag('td', 'Not specified.')
}
end
field.class.columns.collect{|col| col.name}.reject{|col|
col =~ /_at$/ ||
col =~ /_on$/ ||
col =~ /_id$/ ||
col == 'id'}.each do |col|
haml_tag('tr') {
haml_tag('th', ActiveSupport::Inflector::humanize(col))
haml_tag('td', typeize(field, col))
}
end
end
当然,这可以在我看来简单地访问:
- confirmation_table(@f)
然而,对我来说更有意义的是返回一个字符串。我看不出haml_capture
如何提供相同的结构化能力。任何提示?
答案 0 :(得分:6)
将您的haml_tag
来电换入capture_haml
:
def confirmation_table(field)
capture_haml do
if field.respond_to? :user
haml_tag(:tr) do
haml_tag('th.email', 'Email:')
haml_tag('td.email', field.user.email)
end
# ...
end
end
end
它们将被capture_haml
捕获并返回。