我有一个像这样的xml:
xml =
"<outtertag id='1' value='1'>
<innertag id='2' value='2'>'Inner Tag'</innertag>
<othertag id='3' value='3'>'Other Tag'</othertag>
</outtertag>"
当我尝试使用Hash.from_xml(xml)
将其转换为哈希时,它会提供以下输出,该输出错过了innertag和othertag的属性:
{"outtertag"=>{"id"=>"1", "value"=>"1", "innertag"=>"'Inner Tag'", "otherTag"=>"'Other Tag'"}}
如何解析具有这些内部属性的哈希?