跳到主要内容

db.command.aggregate.log10

1. 操作符描述

功能:计算给定数字在对数底为 10 下的 log 值。

声明:db.command.aggregate.log10(number)

注意事项:

log10 等同于 log 方法的第二个参数固定为 10。

2. 操作符参数

字段类型必填说明
-Expressionnumber 可以是任意解析为非负数字的表达式。

3. 示例代码

假设集合 staff 有如下记录:

{ _id: 1, x: 1 }
{ _id: 2, x: 2 }
{ _id: 3, x: 3 }

计算 log10(x) 的值:

// 云函数环境下示例代码
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('ratings')
.aggregate()
.project({
log10: $.log10('$x')
})
.end()
console.log(res.data)
}