是否可以检查集合或子集合是否存在?

是否可以检查集合或子集合是否存在?,第1张

是否可以检查集合或子集合是否存在?

就在这里。您可以使用docs.length来知道子集合是否存在。

我制作了一个样本来指导您,希望对您有所帮助。

 this.db.collection('users').doc('uid')  .get().then(  doc => {    if (doc.exists) {      this.db.collection('users').doc('uid').collection('friendsSubcollection').get().        then(sub => {          if (sub.docs.length > 0) { console.log('subcollection exists');          }        });    }  });


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5476720.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存