gpt4 book ai didi

json - Golang 如何将嵌套结构解码为一片结构

转载 作者:数据小太阳 更新时间:2023-10-29 03:19:52 25 4
gpt4 key购买 nike

我如何在 Golang 中解码此 json 代码。我有主机名和 IP 地址,但没有 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 得到这个:[{我的服务器 127.0.0.1 1 {} { }}]

最佳答案

删除字段标签中 :" 之间的空格。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 命令报告这些错误。

关于json - Golang 如何将嵌套结构解码为一片结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55668781/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com