我需要一个Angular 2中的计时器,它在一个时间间隔后打勾并完成一些任务(可能会调用一些函数)。
如何使用Angular 2执行此操作?
答案 0 :(得分:127)
除了之前的所有答案,我还是会使用RxJS Observables
这是一个示例代码,将在2秒后开始,然后每秒滴答:
import {Component} from 'angular2/core';
import {Observable} from 'rxjs/Rx';
@Component({
selector: 'my-app',
template: 'Ticks (every second) : {{ticks}}'
})
export class AppComponent {
ticks =0;
ngOnInit(){
let timer = Observable.timer(2000,1000);
timer.subscribe(t=>this.ticks = t);
}
}
这是一个有效的plunker
<强>更新强> 如果要调用AppComponent类上声明的函数,可以执行以下操作之一:
**假设您要调用的函数名为 func ,
ngOnInit(){
let timer = Observable.timer(2000,1000);
timer.subscribe(this.func);
}
上述方法的问题在于,如果你在func中调用'this',它将引用订阅者对象而不是AppComponent对象,这可能不是你想要的。
但是,在下面的方法中,您创建一个lambda表达式并在其中调用函数 func 。这样,对func的调用仍然在AppComponent的范围内。在我看来,这是最好的方法。
ngOnInit(){
let timer = Observable.timer(2000,1000);
timer.subscribe(t=> {
this.func(t);
});
}
检查this plunker是否有工作代码。
答案 1 :(得分:77)
另一个解决方案是使用TimerObservable
TimerObservable是Observable的子类。
import {Component, OnInit, OnDestroy} from '@angular/core';
import {Subscription} from "rxjs";
import {TimerObservable} from "rxjs/observable/TimerObservable";
@Component({
selector: 'app-component',
template: '{{tick}}',
})
export class Component implements OnInit, OnDestroy {
private tick: string;
private subscription: Subscription;
constructor() {
}
ngOnInit() {
let timer = TimerObservable.create(2000, 1000);
this.subscription = timer.subscribe(t => {
this.tick = t;
});
}
ngOnDestroy() {
this.subscription.unsubscribe();
}
}
P.S。:别忘了取消订阅。
答案 2 :(得分:11)
import {Component, View, OnInit, OnDestroy} from "angular2/core";
import { Observable, Subscription } from 'rxjs/Rx';
@Component({
})
export class NewContactComponent implements OnInit, OnDestroy {
ticks = 0;
private timer;
// Subscription object
private sub: Subscription;
ngOnInit() {
this.timer = Observable.timer(2000,5000);
// subscribing to a observable returns a subscription object
this.sub = this.timer.subscribe(t => this.tickerFunc(t));
}
tickerFunc(tick){
console.log(this);
this.ticks = tick
}
ngOnDestroy(){
console.log("Destroy timer");
// unsubscribe here
this.sub.unsubscribe();
}
}
答案 3 :(得分:3)
我遇到了一个问题,我不得不使用计时器,但我不得不在同一时间,同一屏幕上显示它们。我在服务中创建了timerObservable。我订阅了两个组件中的计时器,发生了什么?它不会被同步,因为新订阅总是创建自己的流。
我想说的是,如果您打算在多个地方使用一个计时器,请始终放.publishReplay(1).refCount()
在Observer的末尾,因为它每次都会发布相同的流。
示例:
this.startDateTimer = Observable.combineLatest(this.timer, this.startDate$, (localTimer, startDate) => {
return this.calculateTime(startDate);
}).publishReplay(1).refCount();
答案 4 :(得分:3)
您可以简单地使用setInterval实用程序并使用箭头函数作为回调,以便this
指向组件实例。
例如:
this.interval = setInterval( () => {
// call your functions like
this.getList();
this.updateInfo();
});
在ngOnDestroy生命周期钩子中,清除间隔。
ngOnDestroy(){
clearInterval(this.interval);
}
答案 5 :(得分:3)
使用rxjs 6.2.2和Angular 6.1.7时,出现“ Observable.timer不是函数”错误。
此问题通过将“ Observable.timer”替换为“ timer”来解决:
import {timer} from 'rxjs';
....
private my_timer;
ngOnInit(){
this.my_timer = timer(2000,1000);
this.my_timer.subscribe(t=> {
console.log("Tick");
});
}
ngOnDestroy() {
this.my_timer.unsubscribe();
}
答案 6 :(得分:1)
找到一个npm包,使用RxJS作为服务可以轻松实现。
https://www.npmjs.com/package/ng2-simple-timer
您可以“订阅”现有的计时器,这样如果您在同一个组件中多次使用计时器,就不会创建大量的计时器。
答案 7 :(得分:1)
如果你想在ngOnInit上运行一个方法,你可以这样做:
从RXJS导入这两个库:
import {Observable} from 'rxjs/Rx';
import {Subscription} from "rxjs";
然后声明计时器和私人订阅,例如:
timer= Observable.timer(1000,1000); // 1 second for 2 seconds (2000,1000) etc
private subscription: Subscription;
计时器停止时的最后但并非最不重要的方法
ngOnInit() {
this.subscription = this.timer.subscribe(ticks=> {
this.populatecombobox(); //example calling a method that populates a combobox
this.subscription.unsubscribe(); //you need to unsubscribe or it will run infinite times
});
}
全部,Angular 5
答案 8 :(得分:0)
Set Timer and auto call service after certain time
// Initialize from ngInit
ngOnInit(): void {this.getNotifications();}
getNotifications() {
setInterval(() => {this.getNewNotifications();
}, 60000); // 60000 milliseconds interval
}
getNewNotifications() {
this.notifyService.getNewNotifications().subscribe(
data => { // call back },
error => { },
);
}