在golang中,有没有办法查看是否可以将解编入结构的json字段与设置为null的json字段区分开?因为两者都将struct中的值设置为nil,但是我需要知道字段是否以该字段开头,并查看是否有人将其设置为null。
{ "somefield1":"somevalue1", "somefield2":null }
VS
{ "somefield1":"somevalue1", }
当解组为结构时,两个json均为零。任何有用的资源将不胜感激!
使用json.RawMessage以“拖延”解组过程决定做某件事之前要确定原始字节:
json.RawMessage
var data = []byte(`{ "somefield1":"somevalue1", "somefield2": null }`) type Data struct { SomeField1 string SomeField2 json.RawMessage } func main() { d := &Data{} _ = json.Unmarshal(data, &d) fmt.Println(d.SomeField1) if len(d.SomeField2) > 0 { if string(d.SomeField2) == "null" { fmt.Println("somefield2 is there but null") } else { fmt.Println("somefield2 is there and not null") // Do something with the data } } else { fmt.Println("somefield2 doesn't exist") } }
参观游乐场https://play.golang.org/p/Wganpf4sbO