RxJS Observables does not display data on subscribe or async
问题 I am trying to get all the data from firestore - collection and subcollection into an observable form of array and display it with async pipe. availableCategoriesCollection: AngularFirestoreCollection<Category>; availableCategories$: Observable<CategoryId[]>; lstCategories: Observable<any>; this.availableCategoriesCollection = this.httpDataService.getAllCategories(); this.availableCategories$ = this.availableCategoriesCollection.snapshotChanges().map(data => { return data.map(record => {