XmlSimple如何像data.to_xml一样输出XML?
XmlSimple.xml_out
能否以与 to_xml
相同的方式输出 XML? (使用标签代替属性):
> puts XmlSimple.xml_out([{'a' => 1, 'b' => 3.3}])
<opt>
<anon a="1" b="3.3" />
</opt>
> puts ([{:a => 1, :b => 3.3}].to_xml)
<?xml version="1.0" encoding="UTF-8"?>
<records type="array">
<record>
<b type="float">3.3</b>
<a type="integer">1</a>
</record>
</records>
Can XmlSimple.xml_out
output XML the same way to_xml
does? (instead of attributes, use tags):
> puts XmlSimple.xml_out([{'a' => 1, 'b' => 3.3}])
<opt>
<anon a="1" b="3.3" />
</opt>
> puts ([{:a => 1, :b => 3.3}].to_xml)
<?xml version="1.0" encoding="UTF-8"?>
<records type="array">
<record>
<b type="float">3.3</b>
<a type="integer">1</a>
</record>
</records>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自精细手册:
我认为您想要:
这应该给您一些更接近于
to_xml
所做的事情,但您不会获得type
属性。From the fine manual:
I think you want:
That should give you something closer to what
to_xml
does but you won't get thetype
attributes.