小程序
小游戏
企业微信
微信支付
扫描小程序码分享
db.collection('xxx').doc('xxxid').get()
db.collection(
'xxx'
).doc(
'xxxid'
).get()
上面如果 xxxid 不存在,会抛错:
{"errCode":-1,"errMsg":"document.get:fail document with _id xxxid does not exist; at document.get api; "}}
{
"errCode"
:-1,
"errMsg"
:
"document.get:fail document with _id xxxid does not exist; at document.get api; "
}}
请问正确判断doc是否存在正确方式是什么?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
这要看你的具体场景,如果是需要判断doc是否存在并且需要更新操作,那么
db.collection('xxx').doc('xxxid').set()
就能搞定
如果只是单纯的判断doc是否存在不做更新操作,那么加上try ... catch捕获这个错误或者改用
db.collection('xxx').where({ _id: 'xxxid'}).get()
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
).where({ _id:
}).
get
()
返回的是数组,判断数组的长度?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
这要看你的具体场景,如果是需要判断doc是否存在并且需要更新操作,那么
db.collection('xxx').doc('xxxid').set()
就能搞定
如果只是单纯的判断doc是否存在不做更新操作,那么加上try ... catch捕获这个错误或者改用
db.collection('xxx').where({ _id: 'xxxid'}).get()
db.collection(
'xxx'
).where({ _id:
'xxxid'
}).
get
()
返回的是数组,判断数组的长度?