我正尝试从解析的集合中获取所有文档的所有ID,不收取的费用是因为获取文档数据。如果我在下面使用此代码,是否需要为接收数据付费?
db.collection("owners").get().then(function(querySnapshot) {
querySnapshot.forEach(function(doc) {
console.log(doc.id);
});
});
答案 0 :(得分:1)
是的,您将更改为集合中每个文档读取的文档。不阅读文档就无法做到这一点。
How to get a list of document IDs in a collection Cloud Firestore?