小白想问问这个是云函数的错误怎么修改?
发布于 6 年前 作者 qiaojing 5460 次浏览 来自 问答

//下面是云函数的代码
exports.main = async (event, context) => {
  console.log("event.floorIndex=",event.floorIndex)
  console.log("event.datePosition=",event.datePosition)
  return await cloud.database().collection("position_info").where({
    floor :event.floorIndex,
    week :event.datePosition
  }).get();
}
1 回复

是云函数调用或数据库访问次数超出限制了吧?

回到顶部