소개
게시글
질문&답변
2023.08.01
데이터 저장2
앗 잘못썼네요 ㅋㅋ.네 해결했습니다. 기존에는 그냥 where 절 + isEqual To없이 그냥 doc(uid) 이런식으로 했는데 바로 됐거든요. 혹시 그(doc(uid) ) 방법을 사용하시지 않는 이유가 있나요?제가 기존에 사용하던 코드는 그냥 Where절 없이 썼는데 궁금합니다. 감사합니다!
- 0
- 3
- 384
질문&답변
2023.08.01
널 체크
감사합니다!
- 0
- 2
- 275
질문&답변
2023.07.31
데이터 저장2
감사합니다. QuerySnapshot queryResult = await FirebaseFirestore.instance .collection('users') .where('uid', isEqualTo: uid) .get(); 아마 이 코드를 몰라서 그랬던 것 같습니다. 감사합니다! QuerySnapshot queryResult = await FirebaseFirestore.instance .collection('users') .where('uid', isEqualTo: uid) .get(); //이것이 일반적으로 사용했던 코드인데QuerySnapshot queryResult = await FirebaseFirestore.instance .collection('users') .where('uid', isEqualTo: uid) .get();
- 0
- 3
- 384
질문&답변
2023.07.30
클라우드 스토어
감사합니다!
- 0
- 2
- 363
질문&답변
2023.07.27
redirect
아아 지금 보니까 여기 사이에 else 가 빠진것 같아서그런것같네요! 감사합니다! if (result == null) { emit( state.copyWith( status: AuthenticationStatus.unAuthenticated, ), ); } else { emit( state.copyWith( user: result, status: AuthenticationStatus.authentication, ),
- 0
- 2
- 247