为了账号安全,请及时绑定邮箱和手机立即绑定

MongoDB Golang Driver 仅提供更新字段值不为空

MongoDB Golang Driver 仅提供更新字段值不为空

Go
弑天下 2022-10-31 17:23:46
我想创建一个函数来通过它的 id 更新 MongoDB 中的特定文档,但只有在新提供的值不是 Go 默认值时才更新字段。这是我存储在 MongoDB 中的文档结构:type User struct {    ID          primitive.ObjectID `json:"id"                    bson:"_id,omitempty"`    Username    string             `json:"username"              bson:"username"`    FirstName   string             `json:"firstName"             bson:"first_name"`    LastName    string             `json:"lastName,omitempty"    bson:"last_name,omitempty"`    Email       string             `json:"email"                 bson:"email"`    Password    string             `json:"password,omitempty"    bson:"password"`    PhoneNumber string             `json:"phoneNumber,omitempty" bson:"phone_number,omitempty"`    Picture     string             `json:"picture,omitempty"     bson:"picture,omitempty"`    Role        Role               `json:"role"                  bson:"role"`}我的更新函数获取要更新的用户文档的 id 和仅包含应更新的字段的用户结构。因此,如果只更新用户名,则提供的用户结构中的所有其他字段都将具有其默认值。我现在需要首先检查新用户名是否不为空,然后才将其包含在新的更新文档中。这就是我在 javsacript 中解决它的方法。Go有类似的解决方案吗?{  ...(username && { username: username }),  ...(email && { email: email }),  ...(firstname && { firstname: firstname }),  ...(lastname && { lastname: lastname }),  ...(phone && { phone: phone }),  ...(picture && { picture: picture }),},这是我的更新功能:func (us *userQuery) Update(userId string, u datastruct.User) (*datastruct.User, error) {    userCollection := DB.Collection(datastruct.UserCollectionName)    ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)    defer cancel()    _id, err := primitive.ObjectIDFromHex(userId)    if err != nil {        return nil, err    }
查看完整描述

1 回答

?
慕尼黑5688855

TA贡献1848条经验 获得超2个赞

您必须动态构建更新子句:


value:=bson.M{}

if len(u.UserName)!=0 {

  value["username"]=u.UserName

}

if len(u.FirstName)!=0 {

  value["firstName"]=u.FirstName

}

...

if len(value)>0 { // Is there anything to update?

  res, err := userCollection.UpdateByID(

          ctx,

          _id,

          bson.M{"$set":value})

}


查看完整回答
反对 回复 2022-10-31
  • 1 回答
  • 0 关注
  • 169 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信