云函数端 聚合 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万条数据
经过 stop eating 同学点拨,原来可以直接淦到10000
自给自足丰衣足食
我今天中午刚为了这个1000限制优化了下逻辑代码,现在告诉我可以查询10000条了
10000!!