我编写了一个 go 程序,用于将 json 作为对 httpRequest 的响应,但我只能以这种格式创建 json:
{
"Country": [
"abc",
"def",
],
"Population": [
"8388344",
"343",
]
}
内容类型是使用 map[string]string 动态定义的。有人可以帮我提供以下格式的 json:
[
{
"Country" :"abc",
"Population" :"8388344"
},
{
"Country" : "def",
"Population" :"343"
},
...
]
请帮帮我..
饮歌长啸
相关分类