我从httpService得到一个RxJS Observable,这是来自Angular的实际http。现在,当我从中得到一个积极的结果时,我想处理从this.retrieve()
得到的下一个http请求。这或多或少是连续请求。有没有更好的方法呢?
return this.httpService.query(data)
.map(data => {
if(data.status > 1)
this.retrieve().subscribe();
return data;
});
答案 0 :(得分:19)
使用Observable.flatMap
运算符可以实现链接HTTP请求。假设我们想要发出三个请求,其中每个请求取决于前一个请求的结果:
this.service.firstMethod()
.flatMap(firstMethodResult => this.service.secondMethod(firstMethodResult))
.flatMap(secondMethodResult => this.service.thirdMethod(secondMethodResult))
.subscribe(thirdMethodResult => {
console.log(thirdMethodResult);
});
通过这种方式,您可以链接所需的相互依赖的请求。