欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

angular2组件中定时刷新并清除定时器的实例讲解

程序员文章站 2022-10-15 08:11:28
实例如下: import { component,oninit,changedetectionstrategy,changedetectorref,ondestr...

实例如下:

import { component,oninit,changedetectionstrategy,changedetectorref,ondestroy} from "@angular/core";

@component({
changedetection:changedetectionstrategy.onpush
})

export class xxxcomponent{
private timer;
constructor(private ref : changedetectorref){
this.timer = setinterval(()=>{
this.ref.detechchanges();//检测变化
},5000)
}
//销毁组件时清除定时器
ngondestroy(){
if(this.timer){
clearinterval(this.timer);
}
}
}

以上这篇angular2组件中定时刷新并清除定时器的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。