每当触发新请求时,我都有一个用例,任何已经在运行的 http 请求都应该被取消/忽略。
例如:
- 一个请求(比如 #2)进来,而请求 #1 响应时间太长/网络连接速度慢。
- 在这种情况下,#2 会从服务器获得非常快速的响应,然后在任何时候,即使 #1 带着响应返回,HTTP 响应 observable 也应该被忽略。
- 我面临的问题是,首先组件显示来自请求 #2 的响应值,并在请求 #1 完成时再次更新(这不应该发生)。
我认为 switchMap 取消了 obervables / 维护了 observable 值的发出顺序。
摘自我的 service.ts
Obervable.of('myServiceUrl')
.switchMap(url => this.httpRequest(url) )
.subscribe( response => {
// implementation
/** Update an observable with the
with latest changes from response. this will be
displayed in a component as async */
});
private httpRequest(url) {
return this.httpClient.get('myUrl', { observe: 'response' });
}
上述实现不起作用。有人能找出这个用例的正确实现吗?