我希望有一个firebase查询来计算文档的数量。我使用了以下代码(来自firebase文档):
const collectionRef = firestore.collection('tower');
const snapshot = await collectionRef.count().get();
console.log(snapshot.data().count);
我得到错误:
collectionRef. count不是函数。
当我删除count()时,查询就可以工作了。我还尝试了npm i firebase-admin@latest,这在另一篇文章中提到过。
package.json
x一个一个一个一个x一个一个二个x
谢谢你的帮助!
1条答案
按热度按时间qyswt5oh1#
COUNT()功能在v8及之前版本的名称空间语法中不可用,快速浏览guide for the count operations和reference documentation for
Query
似乎可以证实这一点。要使用COUNT(),你必须使用v9和更高版本的模块化语法。