我正在尝试编写将 XML 转换为 JSON 的代码。我要翻译的 XML 如下...
(只是一个片段)
`<version>0.1</version>
<termsofService>http://www.wunderground.com/weather/api/d/terms.html</termsofService>
<features>
<feature>conditions</feature>
</features>
<current_observation>
<image>
<url>http://icons.wxug.com/graphics/wu2/logo_130x80.png</url>
<title>Weather Underground</title>
<link>http://www.wunderground.com</link>
</image>
<display_location>
<full>Kearney, MO</full>
<city>Kearney</city>
<state>MO</state>
<state_name>Missouri</state_name>`
如您所见,我正在使用地图来映射一级嵌套,例如在features
案例中。但是对于两级嵌套情况,例如xml:"current_observation>display_location>state_name"
,我无法弄清楚如何创建第一级,在这种情况下current_observations
。有没有办法以某种方式创建各种地图的地图?任何和所有的想法都非常感谢,因为我现在很困惑,谢谢你的时间!
湖上湖
相关分类