在我的Web服务中,我有一个模型:
// Comment struct
type Comment struct {
Owner UserObject `json:"owner"`
ID int64 `json:"id"`
Message string `json:"message"`
Mentions []MentionObject `json:"mentions,omitempty"`
CreatedAt int64 `json:"created_at,omitempty"`
UpdatedAt int64 `json:"updated_at,omitempty"`
Status int `json:"status,omitempty"`
CanEdit bool `json:"can_edit"`
CanDelete bool `json:"can_delete"`
}
// UserObject struct
type UserObject struct {
ID int64 `json:"id"`
Username string `json:"username"`
FullName string `json:"full_name"`
Avatar string `json:"avatar"`
}
// MentionObject struct
type MentionObject struct {
ID int64 `json:"id"`
Length int64 `json:"length"`
Offset int64 `json:"offset"`
}
我使用gin gonic来路由
routes.GET("/user", func(c *gin.Context) {
c.JSON(200, Comment{})
})
我需要返回这个结构的所有字段,我知道它会响应一个json:
{
"owner": {
"id": 0,
"username": "",
"full_name": "",
"avatar": ""
},
"id": 0,
"message": "",
"can_report": false,
"can_edit": false,
"can_delete": false
}
我知道这是对的,但我仍然希望对所有领域做出回应。 怎么做?
答案 0 :(得分:3)
如果您不想从标记中删除omitempty
值,因为您出于某些其他目的需要它,您可以,如果您使用的是Go 1.8+,则可以定义新的type
}与您要序列化但没有omitempty
标记值的那个相同,然后只需将旧类型的值转换为新类型。
Here's an example of the 1.8+ "tag ignoring" type conversion
您还可以使用 定义一个新类型,在原始文件中省略这些字段,然后将原始文件嵌入新类型like so中。