标签:自动 color 使用 数据 bsp sha nbsp temp 结构
go中定义了结构体之后,使用json.marshal的时候,如果对应字段未能解析,会自动填充字段类型的零值。unmarshal的时候也是。可以通过在json 的标签内添加omitempty来防止这种情况发生
例子如下,在更新数据库的时候,可以先查询,再更新。可选字段可以加上omitempty标签。
type Test struct { Name string `json:"name,omitempty"` }
标签:自动 color 使用 数据 bsp sha nbsp temp 结构
原文地址:https://www.cnblogs.com/lgh344902118/p/12975892.html