我有以下简单的JSON:
{
"201" :
{
"countryName" : "Albania",
"countryCode" : "AL"
},
"202" :
{
"countryName" : "Andorra",
"countryCode" : "AD"
},
...
}
内部字典变成:
struct Mid : Codable
{
var countryName: String
var countryCode: String
}
但是后来我被困住了。我如何表示外字典?</ p>
我想用Mid
键String
,"201"
,...
"202"
对象的字典的结尾