如果我向服务器发出新的 http 请求,我想取消以前的 http 请求,但它没有按预期工作。
如果函数中的某些值发生更改,我想取消请求我的意思是如果值更改旧请求应该取消并且应该为此创建新请求,我已经这样做了
1) 创建了一个主题 - 将由observable
public stringVar = new Subject<string>();
2) 创建一个 observable 来观察主题并发送更新流(您将订阅它以获取更新流)
public stringVar$ = this.stringVar.asObservable()
3)在一个特定的函数中,我将值作为参数,所以我执行这些步骤
testFunction(value){
this.stringVar.next(listValueSelected);
this.testOutput = this.stringVar$.pipe(
switchMap(() => {
return this.teseService.getEntries(val_one, val_two,val_three);
})
)
this.testOutput.subscribe(result => console.log(`${result}`));
}
当值要改变但第一次出现不同的奇怪行为时,请求是可取消的,只有一个请求是模式,但是当我第二次单击它时,它会调用 api 两次,这将继续。我的代码有什么问题?
在 component.ts
export class TestComponent {
testOutput :Observable<any>;
stringVar = new Subject<number>();
stringVar$ = this.stringVar.asObservable();
testResult(selectedValue) {
this.stringVar.next(selectedValue);
this.stringVar$.subscribe(data => {
});
this.testOutput = this.stringVar$.pipe(
switchMap(() => {
return this.testService.getTestEntries(this.x,this.y,this.z);
})
)
this.testOutput.subscribe(result => console.log(`${result}`));
}
}
在服务文件中
getTestEntries(x, y,selectedValue): Observable<any>{
let apiUrl = selectedValue=='3'?this.baseUrl1:this.baseUrl ;
return this.http.post(apiUrl,obj).map((response: Response) => {
return response;
})
}
如果组件中的值“selectedValue”发生更改,我想取消我的旧请求并创建新请求。