我需要从MSACCES数据库中提取JSON对象中的数据......所以我不太确定正确的JSON字符串语法。
{
"Continent": {
"Europe": {
"Countries":
{
"The Netherlands": {
"Cities": [
"Rotterdam",
"Hag",
"Amsterdam"
]
}
},
{
"Germany": {
"Cities": [
"Bon",
"Berlin"
]
}
}
}
}
}
或者这个
{
"Continent": {
"Europe": {
"Countries": [
{
"The Netherlands": {
"Cities": [
"Rotterdam",
"Hag",
"Amsterdam"
]
}
},
{
"Germany": {
"Cities": [
"Bon",
"Berlin"
]
}
}
]
}
}
}
我想知道是{"国家":[{"网络...还是{"国家":{"网络...
2条答案
按热度按时间lstz6jyr1#
因为你有一个
Country[]
数组,我建议你把你的Country
键重命名为Countries
:o4tp2gmn2#
恕我直言,最好的办法就是保持关系
类(翻译成您的语言)