访问struct内部的struct

时间:2017-05-25 11:20:14

标签: json go struct

type Person struct {
    Example []struct {
        Firstname string `json:"firstname"`
        Lastname  string `json:"lastname"`
        Address   []struct {
            Street  string `json:"street"`
            City    string `json:"city"`
            Zip     string `json:"zip"`
            Country string `json:"country"`
        } `json:"address"`
        Age string `json:"age"`
    }  `json:"users"`
}

我正在创建一个带有名称的函数,我将遍历包含多个人的json文件并返回与传递的名称匹配的人。但是,出于我的目的,我需要返回Example结构,并且我不知道如何将返回类型指定为Example结构。我更愿意,如果我不需要分成多个结构,因为我使用上述代码执行各种任务。

0 个答案:

没有答案