gpt4 book ai didi

json - golang json编码返回{}为空 map

转载 作者:IT王子 更新时间:2023-10-29 01:49:19 29 4
gpt4 key购买 nike

我正试图去实际返回给我这样的东西:{"map": {}} 不是 {"map":null} 但 encoding/json 似乎检测到这是一个空映射并且只返回后一个值.

type test struct {
MyMap map[string]string `json:"map"`
}

func main() {
testval := test{}
asjson, err := json.Marshal(testval)
fmt.Println(testval)
fmt.Println(string(asjson))
}

输出是这样的

{map[]}
{"map":null}

我希望它成为 {"map":{}} 建议?我试图手动初始化 map ,并为其使用引用。似乎都没有产生我想要的输出。 :/

最佳答案

test.MyMap 还没有初始化,所以是nil。初始化它会给你想要的结果:

testval := test{
MyMap: make(map[string]string),
}

https://play.golang.org/p/91vZtJeot3

关于json - golang json编码返回{}为空 map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31714469/

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