指定json中的key名字:
指定数据类型, string number, boolean
忽略空值(值不为空, 不忽略)
忽略字段 "-" (无论有没有值, 都忽略)
type user struct {
Id int64 `json:"id,string,omitempty"`
}
本文共 200 字,大约阅读时间需要 1 分钟。
指定json中的key名字:
指定数据类型, string number, boolean
忽略空值(值不为空, 不忽略)
忽略字段 "-" (无论有没有值, 都忽略)
type user struct {
Id int64 `json:"id,string,omitempty"`
}
转载于:https://www.cnblogs.com/-xuzhankun/p/10967787.html