所以我在课程集中有这个文件
{
"_id" : ObjectId("53580ff62e868947708073a9"),
"startDate" : ISODate("2014-04-23T19:08:32.401Z"),
"scoreId" : ObjectId("531f28fd495c533e5eaeb00b"),
"rewardId" : null,
"type" : "certificationCourse",
"description" : "This is a description",
"name" : "testingAutoSteps1",
"authorId" : ObjectId("532a121e518cf5402d5dc276"),
"steps" : [
{
"name" : "This is a step",
"description" : "This is a description",
"action" : "submitCategory",
"value" : "532368bc2ab8b9182716f339",
"statusId" : ObjectId("5357e26be86f746b68482c8a"),
"_id" : ObjectId("53580ff62e868947708073ac"),
"required" : true,
"quantity" : 1,
"userId" : [
ObjectId("53554b56e3a1e1dc17db903f")
]
},...
我想要做的是创建一个查询,返回在userId数组中具有特定userId的所有课程,该数组位于特定userId的steps数组中.我尝试过使用$elemMatch
Course.find({
"steps": {
"$elemMatch": {
"userId": {
"$elemMatch": "53554b56e3a1e1dc17db903f"
}
}
}
},
但它似乎正在返回一个空文档.
最佳答案 除非您在该嵌套数组元素中实际具有复合子文档,否则不需要使用
$elemMatch
.除非被引用的值可能在另一个复合文档中复制,否则也没有必要.
由于这是我们正在谈论的ObjectId,所以它将是唯一的,至少在这个数组中.所以只需使用“点符号”形式:
Course.find({
"steps.userId": ObjectId("53554b56e3a1e1dc17db903f")
},
返回查看$elemMatch
文档.在这种情况下,直接的“点符号”形式就是您所需要的