我想知道是否可以区分空值和未指定的字段值。
这是一个例子:
var jsonBlob = []byte(`[
{"Name": "A", "Description": "Monotremata"},
{"Name": "B"},
{"Name": "C", "Description": ""}
]`)
type Category struct {
Name string
Description string
}
var categories []Category
err := json.Unmarshal(jsonBlob, &categories)
if err != nil {
fmt.Println("error:", err)
}
fmt.Printf("%+v", categories)
此处也可以:https://play.golang.org/p/NKObQB5j4O
输出:
[{Name:A Description:Monotremata} {Name:B Description:} {Name:C Description:}]
因此,在这个例子中,是否可以将类别B的描述与类别C区分开来?
我只是希望能够区分它们以在程序中有不同的行为。
答案 0 :(得分:5)
如果将字段类型更改为指针,则可以区分空值和缺失值。如果该值在JSON中以空字符串值存在,则它将被设置为指向空字符串的指针。如果JSON中不存在,则会保留nil
。
type Category struct {
Name string
Description *string
}
输出(在Go Playground上尝试):
[{Name:A Description:0x1050c150} {Name:B Description:<nil>} {Name:C Description:0x1050c158}]