【发布时间】:2014-07-27 20:50:01
【问题描述】:
我有以下两个辅助方法:
def hello
capture_haml do
haml_tag :div, 'Hello'
end
end
def hello_world
capture_haml do
hello # How can I call it here?
haml_tag :div, 'World'
end
end
我想在hello_world 中致电hello。我单独尝试了hello、capture_haml hello 和haml_tag hello,还结合了.html_safe,但没有任何解决方案能够奏效。
我该怎么做?
我真的更愿意直接使用capture_haml 而不是haml_tag,因为我认为在视图中
= hello_world
比
干净得多- hello_world
谢谢
【问题讨论】:
-
您在
World之后缺少'— 这只是一个错字吗? -
是的,这只是一个错字。 :)
标签: ruby-on-rails-3 haml helper