英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论