在文档mongodb mgo驱动程序中的嵌套数组上增加特定值

时间:2018-12-29 22:16:48

标签: mongodb go aggregation-framework mgo

这是我在json中的mongo集合:

"messages" : 
{
"_id" : ObjectId("5c26844696b72e4b6c9ceee7"),
"pointer" : ObjectId("5c26844696b72e4b6c9ceee6"),
"messages" : [ 
   {
       "uuid" : "f03f7977-0b4e-11e9-9f95-144fd7c03810",
       "content" : "Hello",
       "reportedTimes":0
   }, 
   {
       "uuid" : "78bb831d-0b57-11e9-a286-144fd7c03810",
       "content" : "Yes",
       "reportedTimes":0
   }
  ]
}

我想从“指针”和“ uuid”更新“ reportedTimes”值。 我尝试了许多聚合,但没有得到这样的结果:

pipe := []bson.M{bson.M{"$match": bson.M{"pointer": knownPointer}}, {"messages": bson.M{"$match": bson.M{"uuid": knownUUID}}}, {"$inc": bson.M{"messages.$.reportedTimes": 1}}}

有人返回我不能使用“ $ inc”

或那个

pipe := []bson.M{{"$match": bson.M{"pointer": knownPointer}}, {"$unwind": "$messages"}, {"$project": bson.M{"uuid": "$messages.uuid", "reportedTimes": "$messages.reportedTimes"}}, {"$match": bson.M{"uuid": knownUuid}}} then inc.

我什至没有找到我所有的尝试查询... 我完全被卡住了...我也尝试了Update(selector,query),但仍然找不到有效且有效的方法。 一点帮助将不胜感激。谢谢大家。

1 个答案:

答案 0 :(得分:0)

这是一个简单的Collection.Update()操作,无需为此使用聚合:

err := c.Update(bson.M{
    "pointer":       knownPointer,
    "messages.uuid": knownUUID,
}, bson.M{
    "$inc": bson.M{
        "messages.$.reportedTimes": 1,
    },
})

以下是设置参数以递增文档的第一条消息的reportedTimes的方法:

knownPointer := bson.ObjectIdHex("5c26844696b72e4b6c9ceee6")
knownUUID := "f03f7977-0b4e-11e9-9f95-144fd7c03810"