如何在猫鼬的子文档数组中查找字段?
我有很多这样的评论对象:
I have an array of review objects like this :
"reviews": {
"author": "5e9167c5303a530023bcae42",
"rate": 5,
"spoiler": false,
"content": "This is a comment This is a comment This is a comment.",
"createdAt": "2020-04-12T16:08:34.966Z",
"updatedAt": "2020-04-12T16:08:34.966Z"
},
我想要实现的是查找 author 字段并获取用户数据,但是问题是我尝试使用的查找仅将其返回给我:
What I want to achieve is to lookup the author field and get the user data, but the problem is that the lookup I am trying to use only returns this to me:
代码:
.lookup({
from: 'users',
localField: 'reviews.author',
foreignField: '_id',
as: 'reviews.author',
})
响应:
有什么方法可以获取作者在该字段中的数据?那就是作者的ID.
Any way to get the author's data in that field? That's where the author's Id is.
尝试对您的数据库执行以下查询:
Try to execute below query on your database :
db.reviews.aggregate([
/** unwind in general is not needed for `$lookup` for if you wanted to match lookup result with specific elem in array is needed */
{
$unwind: { path: "$reviews", preserveNullAndEmptyArrays: true },
},
{
$lookup: {
from: "users",
localField: "reviews.author",
foreignField: "_id",
as: "author", // Pull lookup result into 'author' field
},
},
/** Update 'reviews.author' field in 'reviews' object by checking if 'author' field got a match from 'users' collection.
* If Yes - As lookup returns an array get first elem & assign(As there will be only one element returned -uniques),
* If No - keep 'reviews.author' as is */
{
$addFields: {
"reviews.author": {
$cond: [
{ $ne: ["$author", []] },
{ $arrayElemAt: ["$author", 0] },
"$reviews.author",
],
},
},
},
/** Group back the documents based on '_id' field & push back all individual 'reviews' objects to 'reviews' array */
{
$group: {
_id: "$_id",
reviews: { $push: "$reviews" },
},
},
]);
注意::以防万一,如果文档中还有其他字段需要与reviews
一起保留在输出中,则从$group
开始使用以下步骤:
Note : Just in case if you've other fields in document along with reviews
that needs to be preserved in output then starting at $group
use these stages :
{
$group: {
_id: "$_id",
data: {
$first: "$$ROOT"
},
reviews: {
$push: "$reviews"
}
}
},
{
$addFields: {
"data.reviews": "$reviews"
}
},
{
$project: {
"data.author": 0
}
},
{
$replaceRoot: {
newRoot: "$data"
}
}
注意:可能要保持查询在较小的数据集上运行,可能是通过添加$match
作为过滤文档的第一阶段来完成的.也有适当的索引.
Note : Try to keep queries to run on lesser datasets maybe by adding $match
as first stage to filter documents & also have proper indexes.