Chain Observable
问题 I have a problem with observable chaining. My goal is to have this result : {Pagination, Process[]} and Process = { ....., Variables[]} I'm calling a service which return an object {Pagination, Process[]} but Variables in Process are empty. So i need to complete the process object with Variables properties. I do : this.processesService.getData().subscribe(() => { // data }); getData: Observable<any> { let processesResult = fromPromise( .... ); return processesResult.pipe( map( (result) => { <