const dbJQL = uniCloud.databaseForJQL()
module.exports = {
async getHomePageGoodsList() {
try {
let res = await dbJQL.collection("uni-id-users").where("_id").get()
console.log(res,"res")
return res
} catch (error) {
//TODO handle the exception
console.log(error)
}
},
}
let res = await dbJQL.collection("uni-id-users").where("_id").get()为什么这段代码在云对象中用async和await返回的是一个什么都没有的东西,控制台就是什么都没有显示,而且也没有校验schame
BoredApe
或者 await db.collection('uni-id-users').where({ _id: user_id }).get()
2025-01-10 08:50