Document
-
Firestore DocumentSnapshot.exists()가 false를 반환할 때카테고리 없음 2020. 12. 24. 02:36
아래는 Firestore에 문서가 있는지 없는지 확인하는 방법을 구글링했을 때 나온 방법이다. java - Checking if a document exists in a Firestore collection - Stack Overflow DocumentSnapshot.exists()를 사용하는 방법이 대표 답변으로 채택되어있다. 아래는 채택된 답변의 코드를 그대로 복사해 온 것이다. FirebaseFirestore rootRef = FirebaseFirestore.getInstance(); DocumentReference docIdRef = rootRef.collection("yourCollection").document(docId); docIdRef.get().addOnCompleteListener(n..