我有一个产品ID数组,我想在查找函数中使用该数组来查找产品,但是我在$ in中遇到错误。
购物车模式:
{
"_id": "5ec7b6d484649a451f836102",
"date": "2020-05-22T11:26:07.570Z",
"checkout": false,
"products": [
{
"_id": "5ec7b6d484649a451f836103",
"product_id": "5ec7b1b184649a451f8360f8",
"quantity": 1
}
],
"total_price": 150,
"total_quantity": 1,
"user_id": "5ec793d437b834429648657d",
"price_with_discount": 148.5,
"total_discount": 1.5,
"__v": 0
}
聚合功能:
const checkouts = await Cart.aggregate([
{
$match: {
user_id, checkout: true
}
},
{
$group: {
_id: '$_id',
product_list: {
$first: '$products.product_id'
}
}
},
{
$lookup: {
from: 'products',
let: { list: "$product_list" },
pipeline: [
{
$match: {
_id: {
$in: "$$list"
}
}
}
],
as: 'cart_products',
}
}
]);
得到$ in需要一个数组的错误。
答案 0 :(得分:0)
要在查找中使用$$variable
,必须将其包装在$expr表达式中。
在您描述的示例中,$in
是不必要的,您可以使用简单的查找形式,它可能可以使用索引:
{$lookup: {
from: 'products',
localFields: "product_list",
foreignField: "_id",
as: 'cart_products',
}}