官方文档:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/Cloud.database.html
throwOnNotFound
否在调用获取记录(doc.get)时,如果获取不到,是否抛出异常,如果不抛出异常,doc.get 返回空。默认 true。云函数 wx-server-sdk 1.7.0 开始支持。
返回值
服务器云函数端这个设置起作用。
但是小程序端设置不起作用。
1.小程序端的设置
2.具体的执行代码
3.报错信息。
想问下小程序断可以设置不报错提示吗?
let res = await db....get().catch(err=>console.log(res)
if(res){}
这样就成了非阻断了。需要判断if(res)