当应用程序中的路由发生任何更改时,我想将应用程序的路由更改为特定组件。我使用的是 router.events ,但最终却遇到了很多api。这是我的代码
this.router.events.subscribe (event =>
{ if(event instanceof NavigationStart) {
this.reportService.getReport(this.reportId).subscribe(data => {
this.Version = data.Version;
if(this.version <=5) {
this.route.navigate['anycomponentroute'];
}
}
});
任何解决方案?