content_for for xml.builder

时间:2014-08-15 08:07:20

标签: ruby-on-rails ruby xml-builder

是否可以在* .xml.builder文件中使用content_for?

我打印时:

content_for :part do 
  xml.child "anything"
end

xml.parent do 
  xml << yield(:part) if content_for? :part
end

它返回

<child>anything</child> <parent> <child>anything</child> </parent>

但我只需要

<parent> <child>anything</child> </parent>

0 个答案:

没有答案