微信小程序云函数端Aggregate聚合操作limit默认20条限制

云函数端 聚合 Aggregate

  • 经过以下代码验证:

    // test_record 集合中 openid 为 test user openid 的实际上有超过20条数据的
    db
      .collection('test_record')
      .aggregate()
      .match({
        _openid: 'test user openid',
      })
      .end();
    

    最后实际只返回了20条数据,所以说在云函数端如果某些接口返回确定以及肯定超过20条的话,还是老老实实加上 .limit(100) ‘保命’吧。

  • 改成如下代码即可超过默认20条的限制:

    db
      .collection('test_record')
      .aggregate()
      .match({
        _openid: 'test user openid',
      })
      .limit(100) // important
      .end();
    
  • 上限可以直接淦到1万条,你敢信~ 鹅厂

参考文档

  • Collection.limit(value: number): Collection

    limit

  • 获取一个集合的数据

    获取一个集合的数据

你可能感兴趣的:(微信小程序)