Command.elemMatch(condition: Object|Command): Command

支持端:小程序 2.8.3 起, 云函数 1.2.1

用于数组字段的查询筛选条件,要求数组中包含至少一个满足 elemMatch 给定的所有条件的元素

参数

condition: Object|Command

匹配条件

返回值

Command

示例代码:数组是对象数组的情况

假设集合示例数据如下:

  1. {
  2. "_id": "a0",
  3. "city": "x0",
  4. "places": [{
  5. "type": "garden",
  6. "area": 300,
  7. "age": 1
  8. }, {
  9. "type": "theatre",
  10. "area": 50,
  11. "age": 15
  12. }]
  13. }

找出 places 数组字段中至少同时包含一个满足 “area 大于 100 且 age 小于 2” 的元素

  1. const _ = db.command
  2. db.collection('todos').where({
  3. places: _.elemMatch({
  4. area: _.gt(100),
  5. age: _.lt(2),
  6. })
  7. })
  8. .get()

注意*:如果不使用 elemMatch 而直接如下指定条件,则表示的是 places 数组字段中至少有一个元素的 area 字段大于 100 且 places 数组字段中至少有一个元素的 age 字段小于 2:

  1. const _ = db.command
  2. db.collection('todos').where({
  3. places: {
  4. area: _.gt(100),
  5. age: _.lt(2),
  6. }
  7. })
  8. .get()

示例代码:数组元素都是普通数据类型的情况

假设集合示例数据如下:

  1. {
  2. "_id": "a0",
  3. "scores": [60, 80, 90]
  4. }

找出 scores 数组字段中至少同时包含一个满足 “大于 80 且小于 100” 的元素

  1. const _ = db.command
  2. db.collection('todos').where({
  3. places: _.elemMatch(_.gt(80).lt(100))
  4. })
  5. .get()