How to delay forkJoin

前端 未结 3 1920
情话喂你
情话喂你 2021-01-17 01:01

How would you delay .forkJoin() in rxjs?

Here is what I\'ve got but want to use delay() operator with that?

return forkJoin(
   this.cal         


        
3条回答
  •  情歌与酒
    2021-01-17 01:20

    Try thiz

    import { delay } from 'rxjs/operators';
    
    return forkjoin(call1(),call2(),call3).pipe(delay(500));
    

提交回复
热议问题