gpt4 book ai didi

json - 从 JSON 字符串值解析 JSON

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

我想从字符串转换为对象。

来自

{"key1": "{\n  \"key2\": \"value2\",\n  \"key3\": {\n    \"key4\": \"value4\"\n  }\n}\n"}

{"key1": {"key2": "value2", "key3": {"key4": "value4"}}}

最后,我想得到value4

我可以使用下面的脚本获取“key1”的值。

jsondata := `{"key1": "{\n  \"key2\": \"value2\",\n  \"key3\": {\n    \"key4\": \"value4\"\n  }\n}\n"}`
var m map[string]interface{}
json.Unmarshal([]byte(jsondata), &m)
value := m["key1"]
fmt.Println(value)

https://play.golang.org/p/4lwgQJfp5S

但我无法将值转换为对象。所以我无法获得“value4”。有这方面的方法吗?我可以通过正则表达式得到它 https://play.golang.org/p/6TB-qNAdgQ但现在这不是我的解决方案。

非常感谢您的宝贵时间和建议。对于我不成熟的问题,我深表歉意。

最佳答案

JSON编码有两层。第一步是解码外部 JSON 值。解码为与 JSON 结构匹配的结构。

var outer struct{ Key1 string }
if err := json.Unmarshal([]byte(jsondata), &outer); err != nil {
log.Fatal(err)
}

下一步是解码内部 JSON 值。同样,解码为与 JSON 结构匹配的结构。

var inner struct{ Key3 struct{ Key4 string } }
if err := json.Unmarshal([]byte(outer.Key1), &inner); err != nil {
log.Fatal(err)
}
// The value is inner.Key3.Key4

playground example

如果JSON不是双重编码,你可以一次解码:

jsondata := `{"key1": { "key2": "value2",  "key3": { "key4": "value4"  }}}`
var v struct {
Key1 struct{ Key3 struct{ Key4 string } }
}
if err := json.Unmarshal([]byte(jsondata), &v); err != nil {
log.Fatal(err)
}
// value is v.Key1.Key3.Key4

playground example

关于json - 从 JSON 字符串值解析 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47046475/

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