鉴于以下struct
...
package models
import (
"time"
"gopkg.in/mgo.v2/bson"
"github.com/fatih/structs"
)
type User struct {
Id bson.ObjectId `json:"id,omitempty" bson:"_id,omitempty"`
Name string `json:"name,omitempty" bson:"name,omitempty"`
BirthDate time.Time `json:"birth_date,omitempty" bson:"birth_date,omitempty"`
}
...我通过解析像这样的HTTP请求填写它:
func (userController *UserController) UpdateUser() echo.HandlerFunc {
return func(context echo.Context) error {
user := &models.User{}
// parse JSON in POST request and fill the User struct
if err := context.Bind(user); err != nil {
return err
}
// get user id from URL
query := bson.M{"_id": bson.ObjectIdHex(context.Param("id"))}
update := bson.M{
// structs.Map() converts a User struct to a Map[string]interfacce{}
"$set": structs.Map(user)
}
if err := userController.session.DB("test").C("users").Update(query, update); err != {
return err
}
return context.JSON(http.StatusOK, user)
}
}
问题在于,当我得到像这样的更新JSON时......
{
"name": "Bon Scott",
"birth_date" : "1946-07-09"
}
... structs.Map()
仍会返回包含空ID的Map
,如下所示:
map[%!d(string=Name):%!d(string=Bon Scott) %!d(string=BirthDate):{63108633600 0 10736640} %!d(string=Id):%!d(bson.ObjectId=)]
我要避免像这样手动创建Map
字段:
update := bson.M{
"name": user.Name,
"birthDate": user.BirthDate,
}
有没有办法自动删除空字段?
答案 0 :(得分:0)
在您的示例中,您已使用,omitempty
中的bson
标记。
omitempty如果字段未设置为零,则仅包括该字段 类型或空切片或地图的值。
因此,即使您将地图直接传递给更新调用,也不应更新空字段。唯一的问题应该是,你应该注意_id
没有给出不正确的值。