获取集合中复合条件的记录数量。
字段名 | 类型 | 必选 | 默认值 | 说明 |
filter | object | 是 | - | 过滤条件 |
返回一个Promise, resolve结果为符合条件的数据数量。
exports.main = async function(context) { const cloud = context.cloud; const result = await cloud.db.collection('users').count( { age: {$gt: 18} } ); return result; }
(端上调用,缺乏上下文参数,不推荐)