在Firebase Firestore中,如何在没有数据的情况下获取所有文档的ID?

时间:2019-09-12 17:17:38

标签: javascript firebase google-cloud-firestore

我正尝试从解析的集合中获取所有文档的所有ID,不收取的费用是因为获取文档数据。如果我在下面使用此代码,是否需要为接收数据付费?

  db.collection("owners").get().then(function(querySnapshot) {
      querySnapshot.forEach(function(doc) {
          console.log(doc.id);
      });
  });

此数据库: enter image description here

1 个答案:

答案 0 :(得分:1)

是的,您将更改为集合中每个文档读取的文档。不阅读文档就无法做到这一点。

How to get a list of document IDs in a collection Cloud Firestore?