我有一個計時器:Angular2可觀察定時器條件
initiateTimer() {
if (this.timerSub)
this.destroyTimer();
let timer = TimerObservable.create(0, 1000);
this.timerSub = timer.subscribe(t => {
this.secondTicks = t
});
}
我怎麼會彈出一個用戶當前60分鐘後加入的條件?我試過看幾個問題(this和this),但它不是爲我點擊。 RxJS模式還是新的...
您還需要退訂。最好在ngOnInit()中放置上面的代碼,並在ngOnDestroy()中取消訂閱 – user2960993