在this tutorial之后,我尝试在Golang中读取json文件。它说有两种方法可以做到:
由于我可能会有很多不同的json格式,因此我希望即时解释它。所以我现在有以下代码:
package main
import (
"fmt"
"os"
"io/ioutil"
"encoding/json"
)
func main() {
// Open our jsonFile
jsonFile, err := os.Open("users.json")
// if we os.Open returns an error then handle it
if err != nil {
fmt.Println(err)
}
fmt.Println("Successfully Opened users.json")
// defer the closing of our jsonFile so that we can parse it later on
defer jsonFile.Close()
byteValue, _ := ioutil.ReadAll(jsonFile)
var result map[string]interface{}
json.Unmarshal([]byte(byteValue), &result)
fmt.Println(result["users"])
fmt.Printf("%T\n", result["users"])
}
打印输出:
Successfully Opened users.json
[map[type:Reader age:23 social:map[facebook:https://facebook.com twitter:https://twitter.com] name:Elliot] map[name:Fraser type:Author age:17 social:map[facebook:https://facebook.com twitter:https://twitter.com]]]
[]interface {}
在这一点上,我不了解如何读取第一个用户的年龄(23)。我尝试了一些变体:
fmt.Println(result["users"][0])
fmt.Println(result["users"][0].age)
但是显然,type interface {} does not support indexing
。
有没有一种方法可以在不定义结构的情况下访问json中的项目?
答案 0 :(得分:1)
也许你想要
fmt.Println(result["users"].(map[string]interface{})["age"])
或
fmt.Println(result[0].(map[string]interface{})["age"])
由于JSON是地图的地图,叶节点的类型为interface {},因此必须将其转换为map [string] interface {}才能查找键
定义结构要容易得多。我这样做的最高提示是使用一个将JSON转换为Go结构定义的网站,例如Json-To-Go