首页 > 后端开发 > Golang > 在 Go 中解析 JSON 时如何处理 Null int64 值?

在 Go 中解析 JSON 时如何处理 Null int64 值?

Mary-Kate Olsen
发布: 2024-11-30 10:03:11
原创
1071 人浏览过

How to Handle Null int64 Values When Parsing JSON in Go?

Go 中解析包含 int64 空值的 JSON

解析包含 int64 值的 JSON 数据时,可能会遇到空值。默认情况下,Go 编码/json 包尝试将 null 值直接解组到 int64 字段,从而导致错误,因为它无法将 null 转换为 int64。

要解决此问题,请考虑使用指针而不是直接 int64 字段。指针可以为 nil,也可以指向具有关联值的 int64。下面是一个示例:

import (
    "encoding/json"
    "fmt"
)

var d = []byte(`{ "world":[{"data": 2251799813685312}, {"data": null}]}`)

type jsonobj struct{ World []World }
type World struct{ Data *int64 }

func main() {
    var data jsonobj
    jerr := json.Unmarshal(d, &data)
    fmt.Println(jerr)
    if data.World[1].Data != nil {
        fmt.Println(*data.World[1].Data)
    }
}
登录后复制

通过使用指针,如果 JSON 值为 null,则 World 结构中的数据字段可以为 nil,否则指向 int64 值。这使我们能够优雅地处理空值而不会出现错误。

以上是在 Go 中解析 JSON 时如何处理 Null int64 值?的详细内容。更多信息请关注PHP中文网其他相关文章!

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