📌  相关文章
📜  如何在 mongodb 中获取数组对象值 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:24.448000             🧑  作者: Mango

代码示例2
db.test.aggregate([
    {$match: {'shapes.color': 'red'}},
    {$project: {
        shapes: {$filter: {
            input: '$shapes',
            as: 'shape',
            cond: {$eq: ['$$shape.color', 'red']}
        }},
        _id: 0
    }}
])