4

我有一个包含以下内容的 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" }
    ]  
  }
}
4

2 回答 2

3

我使用这个插件... http://www.thomasfrank.se/xml_to_json.html

它总是对我很有魅力。

于 2012-11-28T07:49:58.657 回答
2

我认为您正在寻找以下问题的答案Convert XML to JSON (and back) using Javascript

Javascript 中的 XML <-> JSON 转换

引用的答案

我认为这是最好的:在 XML 和 JSON 之间转换

请务必阅读 Xml.com O'Reilly 站点上的随附文章(链接到 > 底部)。作者详细介绍了这些转换的问题,我认为 > 你会发现这些问题很有启发性。O'Reilly 主持这篇文章的事实应该表明 > Stefan 的解决方案是有价值的。

于 2012-11-28T07:53:50.033 回答