Rails数组to_xml

时间:2011-03-11 12:44:44

标签: ruby-on-rails xml builder

我有一组用户对象,我想以xml的形式返回。如何使用to_xml在根元素上包含属性?例如

    <users total="10">
      <user>
      ..
      </user>
    </users>

我知道您可以使用带有to_xml方法的块向xml添加自定义元素和属性,但我不确定如何添加到根元素。除了使用to_xml

之外,还有其他方法

1 个答案:

答案 0 :(得分:1)

我使用过xml builder。以下代码片段涵盖了一些棘手的xml构建。

在你的控制器中,

require 'builder'

def show_xml
  @xml = get_xml_data
  respond_to do |format|
    format.html # show.html.erb
    format.xml { render :xml => @xml }
  end
end

def get_xml_data
  xml = Builder::XmlMarkup.new#(:target=>$stdout, :indent=>2)
  xml.instruct! :xml, :version => "1.0", :encoding => "US-ASCII"
  xml.declare! :DOCTYPE, :html, :PUBLIC, "-//W3C//DTD XHTML 1.0 Strict//EN",  
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
  favorites = {
    'candy' => 'Neccos', 'novel' => 'Empire of the Sun', 'holiday' => 'Easter'
  }

  xml.favorites do
    favorites.each do | name, choice |
     xml.favorite( choice, :item => name )
    end
  end
end