import { of, from } from 'rxjs'; import { switchMap } from 'rxjs/operators'; let stream$ = of({ message : 'Logged in' }).pipe( switchMap( result => { return ...
確定! 回上一頁