gpt4 book ai didi

angular - 刷新 Angular 6 中的组件

转载 作者:太空狗 更新时间:2023-10-29 18:28:26 26 4
gpt4 key购买 nike

我正在设计一个基于angular 6 的仪表板。我的仪表板有几个不同的组件排列在一起。我想每 5 分钟刷新一次组件。

我已经尝试过 windows.location.reload()location.reload() 但是它刷新了整个页面而不只是一个组件,即具体我所有的组件都得到刷新。因此,请提前提供帮助和感谢。

最佳答案

Try this out

constructor(private ref: ChangeDetectorRef) {    
setInterval(() => {
this.ref.detectChanges();
}, 5000);
}

关于angular - 刷新 Angular 6 中的组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53611625/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com