Firestore array-contains-any is not working properly
问题 "@angular/fire": "5.2.3", "firebase": "7.4.0", Note: members is an array and 0,1,2 is map data structures. service.ts getUserChatGroups(uid: string): Observable<DocumentChangeAction<MessageGroupMemberModel>[]> { return this.afs.collection<MessageGroupMemberModel>(`messageGroups`, ref => ref.where('members', 'array-contains-any', [uid])).snapshotChanges(); } page.ts init(): void { const uid: string = this.authService.getUserUid(); this.chatService.getUserChatGroups(uid).subscribe(res => {