在 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()
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 也可以更新实际位置。