I'm not sure, but I think you could use concatMapTo. See Example 2. In your case: const first$ = of(10).pipe(delay(1000),tap(res => console.log('first'))); ...
確定! 回上一頁