在Angular 8中,如果组件的location.reload()
导致无限循环,可以考虑使用Router
来实现重定向而不是刷新整个页面。
以下是一个示例代码,展示了如何使用Router
来避免无限循环:
Router
和Location
:import { Router, ActivatedRoute } from '@angular/router';
import { Location } from '@angular/common';
constructor(private router: Router, private location: Location) { }
router.navigate()
方法,而不是location.reload()
:this.router.navigate(['/your-route']);
请确保将'/your-route'
替换为您想要重定向的路由路径。
Observable
来监听路由的变化,并在路由变化时执行相应的操作:import { filter } from 'rxjs/operators';
ngOnInit() {
// 监听路由变化
this.router.events.pipe(
filter(event => event instanceof NavigationEnd)
).subscribe(() => {
// 在路由变化后执行相应的操作
// 如重新加载组件或执行其他操作
});
}
使用上述方法,您可以避免无限循环问题,并使用Router
来实现重定向和其他操作。
上一篇:Angular 8中,在页面加载时动态生成的路由上,RouterLinkActive无法工作。
下一篇:Angular 8中,“mat-select value not saved on route change”可以翻译为“路由更改时未保存mat-select的值”。