Command.size(value: string): Command
更新操作符,用于数组字段的查询筛选条件,要求数组长度为给定值
参数
value: string
返回值
Command
示例
找出 tags 数组字段长度为 2 的所有记录
const _ = db.command
db.collection('todos').where({
places: _.size(2)
})
.get({
success: console.log,
fail: console.error,
})