收藏
回答

云函数查询数据库返回为空?

const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()
const MAX_LIMIT = 100
exports.main = async (event, context) => {
  // 先取出集合记录总数
  const countResult = await db.collection('user').count()
  const total = countResult.total
  // 计算需分几次取
  const batchTimes = Math.ceil(total / 100)
  // 承载所有读操作的 promise 的数组
  const tasks = []
  for (let i = 0; i < batchTimes; i++) {
    const promise = db.collection('user').skip(i * MAX_LIMIT).limit(MAX_LIMIT).get()
    tasks.push(promise)
  }
  // 等待所有
  return (await Promise.all(tasks)).reduce((acc, cur) => {
    return {
      data: acc.data.concat(cur.data),
      errMsg: acc.errMsg,
    }
  })
}




在index.js中能查询到数据,在另外一个search.js中查询不到。

回答关注问题邀请回答
收藏

1 个回答

  • 塞北大漠客
    塞北大漠客
    2020-11-17

    已经处理,打印有问题。

    2020-11-17
    有用
    回复
登录 后发表内容
问题标签