gpt4 book ai didi

javascript - 将 XML 转换为 JavaScript 对象

转载 作者:数据小太阳 更新时间:2023-10-29 02:05:14 24 4
gpt4 key购买 nike

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

最佳答案

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

它对我来说总是很有魅力。

关于javascript - 将 XML 转换为 JavaScript 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13600219/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com