-1

在 Mongoose 中创建的用于更新子文档的代码不起作用。所以我尝试在 Mongo Shell 中更新子文档。
这是文档(位置)和子文档(评论):

{
"_id" : ObjectId("56d8c73314fbc7e702cfb8c4"),
"name" : "Costly",
"address" : "150, Super Street",
"coords" : [
    -0.9630884,
    51.451041
],
"reviews" : [
    {
        "author" : "kyle riggen1",
        "_id" : ObjectId("56d8de74cc7f953efd8455d9"),
        "rating" : 4,
        "timestamp" : ISODate("2015-06-01T06:00:00Z"),
        "reviewText" : "will the ID work?"
    }
],
"rating" : 0,
"__v" : 2

}

以下是我更新子文档的一些尝试:
这个问题给出了这种格式:

update({ 
       _id: "56d8c73314fbc7e702cfb8c4", 
       "reviews._id": ObjectId("56d8de74cc7f953efd8455d9")
   },{
       $set: {"reviews.$.rating": 1}
   }, false, true
);

这返回了“未定义更新”的错误,如下所示:

2016-03-03T22:52:44.445-0700 E QUERY    [thread1] ReferenceError: update is not defined :
@(shell):1:1

我认为这是因为该命令不是以 db.locations.update()

MongoDB 文档使用了这种格式:

db.locations.update(
   {
     _id: "56d8c73314fbc7e702cfb8c4",
     review: { $elemMatch: { author: "kyle riggen1" } }
   },
   { $set: { "location.$.rating" : 1 } }
)

这将返回一个有效的更新,但实际上并未发生更新,如下所示:

WriteResult({ "nMatched" : 0, "nUpserted" : 0, "nModified" : 0 })

这个问题使用了这种格式:

db.locations.update({
    _id: "56d8c73314fbc7e702cfb8c4",
    'review.author': 'kyle riggen1'
  },
  { $set: { 'review.$.rating': 1 }}
)

这将返回与 MongoDB 文档相同的结果,如下所示:

WriteResult({ "nMatched" : 0, "nUpserted" : 0, "nModified" : 0 })

所以我猜这些查询是有效的,但我的数据没有得到更新。我的数据可能会被错误地索引吗?即使通过 Mongoose API 也可以更新实际位置。

4

2 回答 2

0

你可以通过 $push 或 $addToSet 来实现。

db.col.update(
        { name: 'reviews', 'list.id': 2 }, 
        {$push: {'list.$.items': {id: 5, name: 'item5'}}}
    )

请参阅 mongodb 手册中的参考资料

https://docs.mongodb.org/manual/reference/operator/update/push/

于 2016-03-04T09:35:59.960 回答
-1

请知道db.collection.update( criteria, objNew, upsert, multi )

  1. criteria: 匹配条件
  2. objNew: 更新内容
  3. upsert: 对或错
    • true : 如果不存在,则插入它
    • false : 如果不存在,则不插入
  4. multi: 对或错
    • true : 更新所有匹配的文档
    • false : 只更新第一个匹配的文档
于 2016-10-25T07:37:27.550 回答