gpt4 book ai didi

javascript - Firestore - 如何像我们在 sql 中所做的那样获取集合中的记录总数

转载 作者:行者123 更新时间:2023-12-03 00:39:06 25 4
gpt4 key购买 nike

db.collection("cities").get().then(function(querySnapshot) { 
console.log(querySnapshot.size); });

但问题是我正在使用分页并为每个调用加载 30 条记录。所以我无法获得记录总数。有什么办法可以得到吗?就像我们在 sql 中所做的那样。

最佳答案

How to get the total number of records in a collection with Firebase ?

方法 numChildren() 可以做到这一点。您可以找到更多相关信息here

这是一个使用它的示例:

db.collection("cities").get().then(function(querySnapshot) { 
console.log(querySnapshot.numChildren());
});

希望我的回答对你有帮助😊

关于javascript - Firestore - 如何像我们在 sql 中所做的那样获取集合中的记录总数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53532615/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com