在Go语言中解析int64的JSON;空值

huangapple go评论91阅读模式
英文:

json parsing of int64 in go; null values

问题

我正在尝试在Go中解析一个json流。我创建了一个简化的示例:

 package main
 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)
 }

这将给我一个错误信息:

go run testmin.go
json: cannot unmarshal null into Go value of type int64

我在sql包中找到了一个可为空的int64类型,但是json似乎无法处理它。

是否有一个json可以处理的可为空的int64类型?如果可能的话,我希望将json的null翻译为-1或MinValue。

谢谢您的建议,
Fabian

英文:

I'm trying to parse a json stream in Go. I've created a simplified example:

 package main
 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)
 }

this will give me

go run testmin.go
json: cannot unmarshal null into Go value of type int64

I've found a nullable int64 in the sql package, but json doesn't seem to be able to handle it.

Is there a nullable int64 type that json can handle? If possible I'd be happy with the json null being translated to, -1 or MinValue.

Thank you for your input,
Fabian

答案1

得分: 27

只需使用*int64。指针可以是nil,也可以指向一个具有关联值的int64,并且它们与Go的JSON包很好地配合使用。

英文:

Just use a *int64. A pointer can either be nil or it can point to an int64 with an associated value and they work fine with Go's JSON package.

答案2

得分: 1

https://github.com/guregu/null 包含了 null.Int null.String 等等,它们具有相应的 JSON 序列化/反序列化功能。

英文:

The https://github.com/guregu/null contains null.Int null.String etc. with corresponding JSON serialization/deserialization.

huangapple
  • 本文由 发表于 2012年6月12日 21:58:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/10998222.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定