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中文网其他相关文章!