在Angular 9中,我们可以使用Router和ActivatedRoute模块来订阅服务和监听ActivationEnd路由事件。下面是一个包含代码示例的解决方法:
首先,确保你的项目中已经安装了@angular/router模块。如果没有安装,可以使用以下命令进行安装:
npm install @angular/router
然后,在你的组件中引入Router和ActivatedRoute模块:
import { Router, ActivatedRoute, NavigationEnd } from '@angular/router';
接下来,注入Router和ActivatedRoute模块到你的组件的构造函数中:
constructor(private router: Router, private route: ActivatedRoute) { }
现在,你可以使用router.events属性来订阅路由事件,以便在路由变化时执行特定的操作。在ngOnInit方法中添加以下代码:
ngOnInit() {
this.router.events.subscribe((event) => {
if (event instanceof NavigationEnd) {
// 在这里执行你的代码
console.log(event.url); // 获取当前路由的URL
}
});
// 通过ActivatedRoute模块订阅ActivationEnd事件
this.route.snapshot.firstChild.data.subscribe((data) => {
// 在这里执行你的代码
console.log(data); // 获取激活路由的数据
});
}
上述代码中,我们使用router.events.subscribe方法来订阅路由事件。然后,我们通过检查event实例是否是NavigationEnd类型来判断是否发生了路由变化。在路由变化时,你可以在其中执行你的代码。
另外,我们还可以使用ActivatedRoute模块来订阅ActivationEnd事件。通过使用route.snapshot.firstChild.data.subscribe方法,我们可以获取激活路由的数据。
请注意,上述代码中的console.log语句只是示例,你可以根据你的需求来执行其他操作。
希望以上解决方法能够帮助到你!