Cloud Firestore collection count

后端 未结 17 1534
庸人自扰
庸人自扰 2020-11-22 09:25

Is it possible to count how many items a collection has using the new Firebase database, Cloud Firestore?

If so, how do I do that?

17条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 09:36

    firebaseFirestore.collection("...").addSnapshotListener(new EventListener() {
            @Override
            public void onEvent(QuerySnapshot documentSnapshots, FirebaseFirestoreException e) {
    
                int Counter = documentSnapshots.size();
    
            }
        });
    

提交回复
热议问题