我可以使用什么来生成本地XML文件?

时间:2013-06-25 21:32:27

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

我有一个我正在研究的项目,我对Rails或Ruby不太了解。

我需要从用户输入生成XML文件。 有人可以指导我使用任何可以快速,轻松地告诉我如何做到这一点的资源吗?

2 个答案:

答案 0 :(得分:13)

Nokogiri gem有一个很好的界面,可以从头开始创建XML。它功能强大,但仍然易于使用。这是我的偏好:

require 'nokogiri'
builder = Nokogiri::XML::Builder.new do |xml|
  xml.root {
    xml.products {
      xml.widget {
        xml.id_ "10"
        xml.name "Awesome widget"
      }
    }
  }
end
puts builder.to_xml

将输出:

<?xml version="1.0"?>
<root>
  <products>
    <widget>
      <id>10</id>
      <name>Awesome widget</name>
    </widget>
  </products>
</root>

此外,Ox也是这样做的。以下是文档中的示例:

require 'ox'

doc = Ox::Document.new(:version => '1.0')

top = Ox::Element.new('top')
top[:name] = 'sample'
doc << top

mid = Ox::Element.new('middle')
mid[:name] = 'second'
top << mid

bot = Ox::Element.new('bottom')
bot[:name] = 'third'
mid << bot

xml = Ox.dump(doc)

# xml =
# <top name="sample">
#   <middle name="second">
#     <bottom name="third"/>
#   </middle>
# </top>

答案 1 :(得分:2)

Nokogiri是libxml2的包装。

的Gemfile gem&#39; nokogiri&#39; 要生成xml,请使用像这样的Nokogiri XML Builder

xml = Nokogiri::XML::Builder.new { |xml| 
    xml.body do
        xml.node1 "some string"
        xml.node2 123
        xml.node3 do
            xml.node3_1 "another string"
        end
        xml.node4 "with attributes", :attribute => "some attribute"
        xml.selfclosing
    end
}.to_xml

结果看起来像

<?xml version="1.0"?>
<body>
  <node1>some string</node1>
  <node2>123</node2>
  <node3>
    <node3_1>another string</node3_1>
  </node3>
  <node4 attribute="some attribute">with attributes</node4>
  <selfclosing/>
</body>

来源:http://www.jakobbeyer.de/xml-with-nokogiri