在成功提交用户详细信息时,我从客户端获得了JSON。
由于未更新JSON中的某些元素,因此可以跳过。
在Go服务器端,我定义了一个等效的结构。
服务器成功将JSON字节编组到结构中。
type user struct { Id *int64 `json:",omitempty"` Name *string `json:",omitempty"` Age *int64 `json:",omitempty"` }
但是对于未从客户端接收到的字段,默认情况下取消对字符串的硬编码解组为nil,对字符串数组解压缩为空数组。
例如,如果我获取json { "Id" : 64, "Name" : "Ryan" }, 则不希望由元帅将其转换为{"Id" : some hexadecimal, "Name" : some hexadecimal, "Age" : nil}。 简单起见,我希望它是{"Id" : some hexadecimal, "Name" : some hexadecimal }
{ "Id" : 64, "Name" : "Ryan" }
{"Id" : some hexadecimal, "Name" : some hexadecimal, "Age" : nil}
{"Id" : some hexadecimal, "Name" : some hexadecimal }
如何完全忽略该字段并映射得到的结果?
Goplayground代码:http ://play.golang.org/p/3dZq0nf68R
您有点困惑,fmt.Printf("%+v", animals)打印Go结构,它将始终打印所有指定的字段。
fmt.Printf("%+v", animals)
但是,如果将其转换回json,它将忽略nil字段。
检查http://play.golang.org/p/Q2M5oab2UX