Angular2/4 : Refresh Data Realtime

前端 未结 4 365
傲寒
傲寒 2020-12-12 19:41

I need to refresh the data in a component page in an interval. Also I need to refresh the data after doing some action. I am using Obeservables in the service so that I can

4条回答
  •  爱一瞬间的悲伤
    2020-12-12 20:36

    Please don't forget to clearInterval on ngDestroy.

        ngOnDestroy() {
            this.unsubscribe.next();
            this.unsubscribe.complete();
            clearInterval(this.interval);
        }
    

提交回复
热议问题