我需要实现以下过程:
这是我做的例子:
this.reservation = this.rest_angular.all('reservations')
.get(route.params.id,
{ expand: 'beddingConfig,agentSummary,providerTitle' })
.switchMap(agent => this.users =
this.rest_angular.all('users').get(agent.agentId));
但是不可能将:this.reservation和this.user粘贴到一个observable中;
当我通过订阅检查“this.reservation”时,我只收到上次请求的数据!
提前致谢!