我有一个包含以下内容的XML文件:
<directory>
<app>
<title>Carrot</title>
<url>www.carrot.com</url>
</app>
<app>
<title>Cucumber</title>
<url>www.cucumber.com</url>
</app>
</directory>
假设我能够读取它并将内容存储为字符串:
s = '<directory><app><title>Carrot</title><url>www.google.com</url></app><app><title>Cucumber</title><url>www.cucumber.com</url></app></directory>';
如何将其转换为如下所示的JavaScript对象?
{
"directory": {
"app": [
{ "title": "Carrot", "url": "www.carrot.com" },
{ "title": "Cucumber", "url": "www.cucumber.com" }
]
}
}
答案 0 :(得分:3)
我使用此插件... http://www.thomasfrank.se/xml_to_json.html
它总是为我带来魅力。
答案 1 :(得分:2)
我认为您正在寻找以下问题的答案Convert XML to JSON (and back) using Javascript
引用回答
我认为这是最好的一个:Converting between XML and JSON
请务必阅读Xml.com O'Reilly网站上的相关文章(链接到&gt;底部)。作者详细介绍了这些转换的问题,我认为&gt;你会发现它具有启发性。 O'Reilly主持该文章的事实应该表明&Stefan的解决方案具有优点。