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 }