rails html helper

时间:2009-11-15 02:32:23

标签: ruby-on-rails haml partials

我正在试图找出在其中生成一些html和嵌套内容的最简洁方法。使用HAML。基本上我想做类似的事情:

= block_large
  This is some nested content

这应该产生:

<div class="block large">
  <img src="block_large_carat.gif" class="block_large_carat">
  This is some nested content
</div>

问题是我不知道如何实现这一目标。谐音?帮手?我对如何嵌套我想要的任何内容感到困惑。试图保持我的HAML DRY并且不想一遍又一遍地明确声明图像标签。

1 个答案:

答案 0 :(得分:5)

编辑


我之前的解决方案不起作用:) 感谢EmFi指出它。
这次我(甚至)测试了它,它(甚至)工作了! \ O /

我在此基于this blog post张贴此内容 阅读完整的帖子以获得更好的解释:)

应用程序/助手/ application_helper.rb

  def block_to_partial(partial_name, options = {}, &block)
    options.merge!(:body => capture(&block))
    concat(render(:partial => partial_name, :locals => options), block.binding)
  end

应用程序/视图/ XXX / new.html.haml

%h2 Test!
- block_to_partial("block_large", :class_name=>"nested_content") do
  This is some nested content
OOps..

应用程序/视图/ XXX / _block_large.html.haml

#block_large
  %img(src="block_large_carat.gif" class="block_large_carat")
  %div(class=class_name)
    = body

渲染:

<div id='block_large'>
  <img class='block_large_carat' src='block_large_carat.gif' />
  <div class='nested_content'>
    This is some nested content
  </div>
</div>
OOps..

希望有所帮助!