Wait until two Observables are complete
问题 I want to call a method after two Observables have returned values. I did some searching and it seems like forkJoin is what I want, but I can't get it to work. I know both of these Observables are returning values, as I am using the data for each individually elsewhere in the component, so clearly I'm doing something else wrong. Here is what I tried. I'm using rxjs v6.4. forkJoin( this.store.pipe(select(fromStore.getAppointmentsLoading)), this.clientStore.pipe(select(fromClientStore