angular http 절 류

때로는 목록 을 누 르 지만 조회 문제 로 백 엔 드 가 데 이 터 를 되 돌려 주 는 속도 가 느 려 서 돌아 오 는 순서 가 어 지 럽 고 백 엔 드 가 해결 되 지 않 습 니 다.
jq 년대 표지 위치 떨 림 방지 절 류 등
angular 에서 rxjs 를 사 용 했 습 니 다.
/ / 오류 시범
1  getIntelligenceById(id, page, size, search?) {
2         this.tableLoading=true;
3         this.knowledgeService.findIntelligence(id, page, size,search).pipe(debounceTime(1000)).subscribe(data => {
4             this.tableData=[];
5 })
6 }

 
/ / 정 답 시작 먼저
searchText$ = new Subject();
/ / 다음으로 이벤트 안 을 클릭
this.searchText$.next(id);
다시
this.searchText$.pipe(debounceTime(1000)).subscribe(data=>{
this.getIntelligenceById(data,this.page,this.size,this.searchListWord);
})
/ / 마지막 으로 구독 취소 잊 지 마 세 요
this.searchText$.unsubscribe();
 
다음으로 전송:https://www.cnblogs.com/fuzitu/p/11498608.html

좋은 웹페이지 즐겨찾기