Golang Howto将嵌套结构解组为一片结构

时间:2019-04-13 18:43:38

标签: json go

如何在Golang中解组此json代码。我有主机名和ipaddress,但没有snmpV1部分:

[
    {
        "hostname" : "myserver",
        "ipaddress" : "127.0.0.1",
        "snmpVersion" : 1,
        "snmpV1" : {
            "community" : "public"
        }
    }
]

我具有以下结构:

type Device struct {
    Hostname string `json: "hostname"`
    Ipaddress string `json:"ipaddress"`
    SnmpVersion int `json:"snmpVersion"`
    SnmpV1cred struct {
        Community string `json: "community"`
    } `json: "snmpV1"`
    SnmpV3cred struct {
        secName string `json: "secName"`
        authPassword string `json: "authPassword"`
        AuthProto string `json: "authProtocol"`
        PrivPassword string `json: "privPassword"`
        PrivProto string `json: "priveProtocol"`
        secLevel string `json: "secLevel"`
    } `json: "snmpV3"`
}

然后我使用以下命令解组

deviceList := []Device{}
buffer, err := ioutil.ReadFile(deviceFile)
if err != nil {
    logger.Fatal(err)
}

err = json.Unmarshal(buffer, &deviceList)

但是我只能通过fmt.Println来获得它: [{myserver 127.0.0.1 1 {} {}}]

1 个答案:

答案 0 :(得分:0)

删除字段标记中:"之间的空格。 Export所有字段。

type Device struct {
    Hostname    string `json:"hostname"`
    Ipaddress   string `json:"ipaddress"`
    SnmpVersion int    `json:"snmpVersion"`
    SnmpV1cred  struct {
        Community string `json:"community"`
    } `json:"snmpV1"`
    SnmpV3cred struct {
        SecName      string `json:"secName"`
        AuthPassword string `json:"authPassword"`
        AuthProto    string `json:"authProtocol"`
        PrivPassword string `json:"privPassword"`
        PrivProto    string `json:"priveProtocol"`
        SecLevel     string `json:"secLevel"`
    } `json:"snmpV3"`
}

go vet命令报告这些错误。