调用isRefresh()函数时,重新加载或刷新当前页面。
答案 0 :(得分:0)
可以,
window.location.reload()
答案 1 :(得分:0)
这不是通常处理事物的正确方法,但是可以解决您的问题:
constructor(private router: Router){};
// Custom refresh code
reloadWindow() {
this.router.navigateByUrl(`/`).then(
() => {this.router.navigateByUrl(this.router.url);});
}