RxJS Observable 강제 구독 해제

agnusdei·2023년 7월 5일
0
post-custom-banner
const sub = this.scrollService.getScrollY().subscribe({ // 구독 시작
      next: (scrollY) => { // 스크롤 좌표에 해당하는 페이지 넘버 1~8 리턴
        const pageIndex = sections.findIndex((section) =>
          this.checkVisible(section.nativeElement)
        );
        // 마지막 페이지일 경우 구독 중지
        if (pageIndex === 8) {
          sub.unsubscribe();
        }
      },
    });

0개의 댓글