首页 > 后端开发 > Golang > 为什么我的 Go 结构无法将 JSON 字符串解组到嵌套结构字段中,如何使用两遍解组方法修复它?

为什么我的 Go 结构无法将 JSON 字符串解组到嵌套结构字段中,如何使用两遍解组方法修复它?

Patricia Arquette
发布: 2024-12-02 07:48:15
原创
194 人浏览过

Why is my Go struct unable to unmarshal a JSON string into a nested struct field, and how can I fix it using a two-pass unmarshalling approach?

问题:无法将字符串解组到 Go Struct 字段

在处理来自 Docker API 的 /manifests 端点(v2 架构 1)的 JSON 响应时,尝试将其反序列化为 Go 结构时遇到错误。错误,“json:无法将字符串解组到 Go 结构字段 .v1Compatibility of type struct { ID string "json:"id""; Parent string "json:"parent""; Created string "json:"created"" }" ,表示相关字段的类型应与提供的 JSON 数据不同。

以下代码片段代表有问题的部分:

type ManifestResponse struct {
    // ... other fields
    History []struct {
        V1Compatibility struct {
            ID              string `json:"id"`
            Parent          string `json:"parent"`
            Created         string `json:"created"`
        } `json:"v1Compatibility"`
    } `json:"history"`
}

// ...
if err = json.NewDecoder(res.Body).Decode(&jsonManResp); err != nil {
    log.Fatal(err)
}
登录后复制

出现此问题的原因是字段 V1Compatibility 是 JSON 响应中的字符串。然而,Golang 希望它是一个 V1Compatibility 类型的结构。为了解决这个问题,需要采用两遍解组方法。

下面修改后的代码演示了解决方法:

type ManifestResponse struct {
    // ... other fields
    History []struct {
        V1CompatibilityRaw string `json:"v1Compatibility"`
        V1Compatibility V1Compatibility
    } `json:"history"`
}

type V1Compatibility struct {
    ID              string `json:"id"`
    Parent          string `json:"parent"`
    Created         string `json:"created"`
}

// ...
var jsonManResp ManifestResponse
if err := json.Unmarshal([]byte(exemplar), &jsonManResp); err != nil {
    log.Fatal(err)
}
for i := range jsonManResp.History {
    var comp V1Compatibility
    if err := json.Unmarshal([]byte(jsonManResp.History[i].V1CompatibilityRaw), &comp); err != nil {
        log.Fatal(err)
    }
    jsonManResp.History[i].V1Compatibility = comp
}
登录后复制

在此解决方案中,引入了 V1CompatibilityRaw 字段来容纳字符串值来自 JSON 响应。解组的第二遍用实际的结构数据填充 V1Compatibility 字段。

此方法可以将 JSON 响应成功反序列化为所需的 Go 结构。

以上是为什么我的 Go 结构无法将 JSON 字符串解组到嵌套结构字段中,如何使用两遍解组方法修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板