所选类别的流派 > 所选流派的列表-6ren">
gpt4 book ai didi

android - 对于有这么多数据的东西,JSON 比 XML 好吗 "classification"

转载 作者:行者123 更新时间:2023-11-29 12:28:00 25 4
gpt4 key购买 nike

你好,我将如何在 JSON 中存储数据而不是使用 XML,如下例所示

这适用于由单个用户从单个域在线更新的移动应用。

enter image description here

我的 XML 路径如下,站点将首先显示类别 > 所选类别的流派 > 所选流派的列表项 > 所选流派的列表项(每个都是一个新页面)调用来自 JSON 数组或某种类型的数据嵌套?这是 5 个类别之一,每个类别最多可以有 20 个流派,每个流派可以列出 10-50 多个。每个列表项都有 200 字的描述、img 路径和标题....

    <category>
<category-name>category one</category-name>
<category-description>what is category one about</category-description>
<genres>
<genre> <!-- start of genre -->
<name>genre one</name>
<description>what is genre one about</description>
<list>
<item>
<img></img>
<name></name>
<description></description>
</item>
<item>
<img></img>
<name></name>
<description></description>
</item>
<item>
<img></img>
<name></name>
<description></description>
</item>
</list>
</genre>

<genre> <!-- start of genre -->
<name>genre two</name>
<description>what is genre two about</description>
<list>
<item>
<img></img>
<name></name>
<description></description>
</item>
<item>
<img></img>
<name></name>
<description></description>
</item>
<item>
<img></img>
<name></name>
<description></description>
</item>
</list>
</genre>
</genres>
</category>
<!-- now add another 4+ categories as big as the above-->

最佳答案

这很简单。 JSON 是一个现代标准,可以说它在浏览器和 native 应用程序中都有更好/更清晰的支持。这是一个简单的转换,让我知道您的想法。

[
{
"category-name" : "category one",
"category-description" : "what is category one about",
"genres" : [
{
"genre-name" : "genre one",
"genre-description" : "what is genre one about",
"list" : [
{
"img" : "",
"name" : "",
"description" : ""
},
{
"img" : "",
"name" : "",
"description" : ""
},
{
"img" : "",
"name" : "",
"description" : ""
}
]
},
{
"genre-name" : "genre two",
"genre-description" : "what is genre two about",
"list" : [
{
"img" : "",
"name" : "",
"description" : ""
},
{
"img" : "",
"name" : "",
"description" : ""
},
{
"img" : "",
"name" : "",
"description" : ""
}
]
}
]
}, ...
]

关于android - 对于有这么多数据的东西,JSON 比 XML 好吗 "classification",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28501431/

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