跳到主要内容

db.command.aggregate.eq

1. 操作符描述

功能:匹配两个值,如果相等则返回 true,否则返回 false

声明:db.command.aggregate.eq([value1, value2])

2. 操作符参数

字段类型必填说明
-<Array>Expression聚合表达式数组

3. 示例代码

假设集合 price 有如下记录:

{ "_id": 1, "value": 10 }
{ "_id": 2, "value": 80 }
{ "_id": 3, "value": 50 }

value 等于 50 的记录。

// 云函数环境下示例代码
const tcb = require('@cloudbase/node-sdk')
const app = tcb.init({
env: 'xxx'
})

const db = app.database()
const $ = db.command.aggregate

exports.main = async (event, context) => {
const res = await db
.collection('price')
.aggregate()
.project({
matched: $.eq(['$value', 50])
})
.end()
console.log(res.data)
}

返回结果如下:

{ "_id": 1, "matched": false }
{ "_id": 2, "matched": false }
{ "_id": 3, "matched": true }