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组件中定时刷新并清除定时器的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: 肝硬化吃什么好的快
下一篇: 详解vue 项目白屏解决方案