如何在 html 模板中将 relativeTo 属性 与 routerActive 一起使用?
How can I use relativeTo property in html template along with routerActive?
我需要在我的应用程序中使用 'relativeTo' 属性 和 'routerLinkActive' 指令。
具有使用
路由的点击侦听器功能
router.navigate(this.router.navigate(['path']{relativeTo:this.route});
没问题。但在那种情况下我不能使用 routerLinkActive 指令。
如何同时使用两者?
RelativeTo 默认设置为当前激活的路由。在模板中,您可以在路由名称中使用 .
或 ^
。
关于相对导航的更多信息:
https://angular.io/guide/router#relative-navigation
我需要在我的应用程序中使用 'relativeTo' 属性 和 'routerLinkActive' 指令。 具有使用
路由的点击侦听器功能router.navigate(this.router.navigate(['path']{relativeTo:this.route});
没问题。但在那种情况下我不能使用 routerLinkActive 指令。
如何同时使用两者?
RelativeTo 默认设置为当前激活的路由。在模板中,您可以在路由名称中使用 .
或 ^
。
关于相对导航的更多信息:
https://angular.io/guide/router#relative-navigation