switchMap: 여러 개의 요청이 트리거됨 나는 각도 2 RC-4를 사용하고 있다.입력란에 변경 사항이 있을 때마다 네트워크 요청을 하려고 한다.하지만 그 요청은 두 번이나 걸려오고 있다. 내 코드는 다음과 같다. 구성 요소.ts this.term = new Control(); this.suggestions = this.term.valueChanges // .debounceTime(1000) // check if the search term's length is >= 1 .filter(term => term && term.length) // switchMap only subscribes to one observable at a time so if a new key is // pressed before..