3 回答
TA贡献1853条经验 获得超18个赞
您可以通过执行以下操作来获取 JSON 结构的顶级键:
package main
import (
"encoding/json"
"fmt"
)
// your JSON structure as a byte slice
var j = []byte(`{"foo":1,"bar":2,"baz":[3,4]}`)
func main() {
// a map container to decode the JSON structure into
c := make(map[string]json.RawMessage)
// unmarschal JSON
e := json.Unmarshal(j, &c)
// panic on error
if e != nil {
panic(e)
}
// a string slice to hold the keys
k := make([]string, len(c))
// iteration counter
i := 0
// copy c's keys into k
for s, _ := range c {
k[i] = s
i++
}
// output result to STDOUT
fmt.Printf("%#v\n", k)
}
请注意,键的顺序不能与它们在 JSON 结构中的顺序相对应。它们在最终切片中的顺序甚至在完全相同代码的不同运行之间也会有所不同。这是因为地图迭代的工作方式。
- 3 回答
- 0 关注
- 521 浏览
添加回答
举报