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

使用 struct & mongodb/mongo-go-driver 更新/替换 mongodb

使用 struct & mongodb/mongo-go-driver 更新/替换 mongodb

Go
烙印99 2023-04-17 16:45:04
我正在尝试使用结构更新/替换 mongodb 文档,但我一直在获取err: update document must contain key beginning with '$'collection := r.client.Database(database).Collection(greetingCollection)payment.MongoID = objectid.New()filter := bson.NewDocument(bson.EC.String("id", payment.ID))_, err := collection.UpdateOne(ctx, filter, payment)return err
查看完整描述

2 回答

?
jeck猫

TA贡献1909条经验 获得超7个赞

我相信接受的答案对我不起作用,因为我正在使用该go.mongodb.org/mongo-driver软件包。有了这个包,语法就更简单了:

update := bson.M{ 
       "$set": yourDocument,
    }

collection.UpdateOne(ctx, filter, update)


查看完整回答
反对 回复 2023-04-17
?
当年话下

TA贡献1890条经验 获得超9个赞

您应该提供更新语句而不是文档作为该Collection.UpdateOne方法的第三个参数。例如:


update := bson.NewDocument(

    bson.EC.SubDocumentFromElements(

        "$set",

        bson.EC.Double("pi", 3.14159),

    ),

)

collection.UpdateOne(ctx, filter, update)

在MongoDB 文档中查看有关可用更新运算符的更多信息(键以“$”开头)。



查看完整回答
反对 回复 2023-04-17
  • 2 回答
  • 0 关注
  • 260 浏览
慕课专栏
更多

添加回答

举报

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