以下是我最终需要的特定XML:
<?xml version="1.0" encoding="UTF-8"?>
<customer>
<email>joe@example.com</email>
<first_name>Joe</first_name>
<last_name>Blow</last_name>
</customer>
但是说我有一个控制器(Ruby on Rails)将数据发送到方法。我更愿意将其作为哈希发送,如下:
:first_name => 'Joe',
:last_name => 'Blow',
:email => 'joe@example.com'
那么,我怎样才能将哈希值转换为XML格式呢?
答案 0 :(得分:70)
ActiveSupport为Hash添加了to_xml
方法,因此您可以通过此方式获得非常接近的内容:
sudo gem install activesupport
require "active_support/core_ext"
my_hash = { :first_name => 'Joe', :last_name => 'Blow', :email => 'joe@example.com'}
my_hash.to_xml(:root => 'customer')
最后:
<?xml version="1.0" encoding="UTF-8"?>
<customer>
<last-name>Blow</last-name>
<first-name>Joe</first-name>
<email>joe@example.com</email>
</customer>
请注意,下划线将转换为破折号。
答案 1 :(得分:3)
如果此数据是模型,请查看覆盖to_xml
。
否则,Builder是个不错的选择。
答案 2 :(得分:3)
我建议像XmlSimple这样的宝石提供这种设施。
答案 3 :(得分:2)
我前一段时间在我的大学做了一个关于这个话题的简短介绍。 Here是幻灯片(有趣的部分从&gt; =第37页开始)
答案 4 :(得分:2)
宝石gyoku非常好。
Gyoku.xml(:lower_camel_case => "key")
# => "<lowerCamelCase>key</lowerCamelCase>"
Gyoku.xml({ :camel_case => "key" }, { :key_converter => :camelcase })
# => "<CamelCase>key</CamelCase>"
Gyoku.xml({ acronym_abc: "value" }, key_converter: lambda { |key| key.camelize(:lower) })
# => "<acronymABC>value</acronymABC>"
和更有用的选项。