收藏
回答

云函数在本地调试可以获取到数据库数据,但是上传之后获取数据为空

框架类型 问题类型 终端类型 AppID 基础库版本
小程序 Bug 客户端 wx6ad765d351061e65 2.7.2

- 当前 Bug 的表现(可附上截图)


- 预期表现


- 复现路径


- 提供一个最简复现 Demo

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('company').where(event).count()

const total = countResult.total

// 计算需分几次取

const batchTimes = Math.ceil(total / 100)

// 承载所有读操作的 promise 的数组

const tasks = []


const list = await db.collection('company').where(event).get()

console.log("list:",list)

return list

}




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

1 个回答

登录 后发表内容