gpt4 book ai didi

json - 在 Go 中解码 JSON 标记联合

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

我正在尝试整理 Google Actions 的 JSON 请求。这些有像这样的标记联合数组:

{
"requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf",
"inputs": [{
"intent": "action.devices.QUERY",
"payload": {
"devices": [{
"id": "123",
"customData": {
"fooValue": 74,
"barValue": true,
"bazValue": "foo"
}
}, {
"id": "456",
"customData": {
"fooValue": 12,
"barValue": false,
"bazValue": "bar"
}
}]
}
}]
}

{
"requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf",
"inputs": [{
"intent": "action.devices.EXECUTE",
"payload": {
"commands": [{
"devices": [{
"id": "123",
"customData": {
"fooValue": 74,
"barValue": true,
"bazValue": "sheepdip"
}
}, {
"id": "456",
"customData": {
"fooValue": 36,
"barValue": false,
"bazValue": "moarsheep"
}
}],
"execution": [{
"command": "action.devices.commands.OnOff",
"params": {
"on": true
}
}]
}]
}
}]
}

etc.

显然,我可以将其解编为一个接口(interface){},并使用完全动态的类型转换和所有内容来对其进行解码,但 Go 对解码为结构体有不错的支持。有没有办法在 Go 中优雅地做到这一点(例如 like you can in Rust)?

我觉得你几乎可以通过阅读 demarshalling 来做到这一点:

type Request struct {
RequestId string
Inputs []struct {
Intent string
Payload interface{}
}
}

但是,一旦您拥有了 Payload 接口(interface){},似乎没有任何方法可以将其反序列化为 struct(除了序列化并再次反序列化之外)太烂了,有什么好的解决办法吗?

最佳答案

您可以将其存储为 json.RawMessage,然后根据值将其解码,而不是将 Payload 解码为 interface{}的意图。这在 json 文档的示例中显示:

https://golang.org/pkg/encoding/json/#example_RawMessage_unmarshal

将该示例与您的 JSON 一起使用并构造您的代码将变成如下所示:

type Request struct {
RequestId string
Inputs []struct {
Intent string
Payload json.RawMessage
}
}

var request Request
err := json.Unmarshal(j, &request)
if err != nil {
log.Fatalln("error:", err)
}
for _, input := range request.Inputs {
var payload interface{}
switch input.Intent {
case "action.devices.EXECUTE":
payload = new(Execute)
case "action.devices.QUERY":
payload = new(Query)
}
err := json.Unmarshal(input.Payload, payload)
if err != nil {
log.Fatalln("error:", err)
}
// Do stuff with payload
}

关于json - 在 Go 中解码 JSON 标记联合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55994888/

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