gpt4 book ai didi

json - 在 Go 中将 JSON 解码为 map

转载 作者:IT王子 更新时间:2023-10-29 02:34:02 27 4
gpt4 key购买 nike

我无法弄清楚如何将 JSON 文件的“子部分”加载到 map 元素中。背景:我正在尝试解码一个具有严格结构的有点复杂的配置文件,因此我认为最好解码为“静态”结构而不是接口(interface){}。

例如,这是一个简单的 JSON 文件:

{
"set1": {
"a":"11",
"b":"22",
"c":"33"
}
}

此代码有效:

package main

import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
)

type JSONType struct {
FirstSet ValsType `json:"set1"`
}

type ValsType struct {
A string `json:"a"`
B string `json:"b"`
C string `json:"c"`
}

func main() {
file, e := ioutil.ReadFile("./test1.json")
if e != nil {
fmt.Println("file error")
os.Exit(1)
}
var s JSONType
json.Unmarshal([]byte(file), &s)
fmt.Printf("\nJSON: %+v\n", s)
}

但这不是:

package main

import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
)

type JSONType struct {
FirstSet ValsType `json:"set1"`
}

type ValsType struct {
Vals map[string]string
}

func main() {
file, e := ioutil.ReadFile("./test1.json")
if e != nil {
fmt.Println("file error")
os.Exit(1)
}

var s JSONType
s.FirstSet.Vals = map[string]string{}
json.Unmarshal([]byte(file), &s)
fmt.Printf("\nJSON: %+v\n", s)
}

Vals map 未加载。我究竟做错了什么?感谢您的帮助!

这是一个更好的例子:

{
"set1": {
"a": {
"x": "11",
"y": "22",
"z": "33"
},
"b": {
"x": "211",
"y": "222",
"z": "233"
},
"c": {
"x": "311",
"y": "322",
"z": "333"
},
}
}

代码:

package main

import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
)

type JSONType struct {
FirstSet map[string]ValsType `json:"set1"`
}

type ValsType struct {
X string `json:"x"`
Y string `json:"y"`
Z string `json:"z"`
}

func main() {
file, e := ioutil.ReadFile("./test1.json")
if e != nil {
fmt.Println("file error")
os.Exit(1)
}
var s JSONType
json.Unmarshal([]byte(file), &s)
fmt.Printf("\nJSON: %+v\n", s)
}

最佳答案

我相信这是因为您的模型中有额外的间接层。

type JSONType struct {
FirstSet map[string]string `json:"set1"`
}

应该够了。如果您指定 map[string]string json 中的对象被识别为该 map 。您创建了一个结构来包装它,但是像这样的 json block ;

{
"a":"11",
"b":"22",
"c":"33"
}

其实可以直接解码成map[string]string

编辑:基于评论的其他一些模型

type JSONType struct {
FirstSet map[string]Point `json:"set1"`
}

type Point struct {
X string `json:"x"`
Y string `json:"y"`
Z string `json:"z"`
}

这使您的 3-d 点成为一个静态类型的结构,这很好。如果您想快速而肮脏地进行操作,也可以使用 map[string]map[string]string这将给出 map 的 map ,因此您可以访问像 FirstSet["a"]["x"] 这样的点值它会返回 "11" .

二次编辑;显然我没有仔细阅读你的代码,因为上面的例子是一样的。基于此,我猜你想要

 FirstSet map[string]map[string]string `json:"set1"`

选项。虽然在您编辑后我还不是很清楚。

关于json - 在 Go 中将 JSON 解码为 map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30874299/

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