微信小程序读取数据超过20,100的限制方法

云函数端

1.首先获得欲查询数据的总数

2.然后编写单次查询函数

3.循环查询,然后组合到一起

小程序端

思路与云函数端一样,不同的是小程序端不允许await,需要用Promise方法实现

1.获取总数

function getListCount(openid) {
  return new Promise((resolve, reject) => {
    db.collection('info').where({
      "studyUserId": openid
    }).count().then(res => {
      resolve(res.total);
    }).catch(e => {
      console.log(e)
      reject("查询失败")
    })
  })
}
 

2.单次查询函数

function getListIndexSkip(openid, skip) {
  return new Promise((resolve, reject) => {
    let statusList = []
    let selectPromise;    
    if (skip > 0) {
      selectPromise = db.collection('info').where({
        "studyUserId": openid
      }).skip(skip).get()
    } else {
      //skip值为0时,会报错
      selectPromise = db.collection('info').where({
        "studyUserId": openid
      }).get()
    }
    selectPromise.then(res => {
      resolve(res.data);
    }).catch(e => {
      console.error(e)
      reject("查询失败!")
    })
  })
}

3.循环查询,整合数据

getListCount(openid).then(res => {
      let count = res
      let list = []
      for (let i = 0; i < count ; i += 20) {
        getListIndexSkip(openid, i).then(res => {
            list = list.concat(res);
            if (list.length == count ) {
              resolve(list)
            }
          })
          .catch(e => {
            console.error(e)
            reject("查询失败")
          })
      }
    })
 })
————————————————
版权声明:本文为CSDN博主「黑鸦log」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/c0411034/article/details/100533151

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值