在golang中,是否有一种方法可以查看是否可以将解编入结构的json字段与设置为null的json字段区分开?因为两者都将struct中的值设置为nil,但是我需要知道字段是否以该字段开头,并查看是否有人将其设置为null。

{
  "somefield1":"somevalue1",
  "somefield2":null
}

VS
{
  "somefield1":"somevalue1",
}

当解码为结构时,两个json均为零。
任何有用的资源将不胜感激!

最佳答案

在决定做某事之前,使用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

09-25 23:01