go中json序列化使用标签来进行拓展:
1、忽略空值:
type Person struct {
Id int64 `json:"id, omitempty"`
}
2、忽略字段(不论是否为空值):
type Person struct {
Id int64 `json:"-"`
}
3、指定数据类型:
type Person struct {
Id int64 `json:"id,string"`
}
go中json序列化使用标签来进行拓展:
1、忽略空值:
type Person struct {
Id int64 `json:"id, omitempty"`
}
2、忽略字段(不论是否为空值):
type Person struct {
Id int64 `json:"-"`
}
3、指定数据类型:
type Person struct {
Id int64 `json:"id,string"`
}