需求
根据下级路由改变父组件的菜单选中
解决方法
主要通过 this.router.events.subscribe
获取路由的变化
export class FrontendComponent {
constructor(
private router: Router) {
this.router.events.subscribe(event => {
if (event instanceof NavigationEnd) {
// event.url '/blog'
this.routerChanged(event.url);
}
});
}
}
获取当前路由网址进行切换
转载请保留原文链接: https://zodream.cn/blog/id/138.html