Observable.forkJoin() doesn't execute

后端 未结 5 1846
萌比男神i
萌比男神i 2020-12-30 23:42

I have the following code:

//Loop: For each user ID/Role ID, get the data
userMeta.forEach((businessRole) => {
  Observable.forkJoin(
    af.database.obje         


        
5条回答
  •  天命终不由人
    2020-12-31 00:37

    I had the same issue and I could not really get the forkJoin operator work, so I just used the combineLatest, which has worked!

提交回复
热议问题