我必须在我的angular应用程序中重新加载页面才能重置我的所有数据。
但是当我window.location.reload()
出现白色屏幕时,用户可以认为应用程序崩溃了。所以我想拥有cursor:wait
,但是它不起作用。
.ts文件:
ngOnInit() {
document.body.style.cursor = "wait";
}
ngAfterViewInit() {
document.body.style.cursor = "initial";
}
有人有什么解决办法吗?
答案 0 :(得分:0)
我不确定重新加载整个应用程序是否理想。您只需重新加载组件即可更新组件和视图。
constructor(private route : ActivatedRoute,
private router : Router) {}
buttonClick() {
this.router.navigateByUrl('your_path');
}
希望获得帮助!