因此,我想在特定页面被击中时使我的Header上的锚元素消失.当该页面被击中时,如何在* ngIf中捕获url.
我有一个标题,所有页面都保持相同.当我在/ home路由时,只需要隐藏一个锚元素.如何在* ngIf中捕获这个“/ home”?
* ngIf =“href =’/ home’”无效.任何替代品?
//mycomponent.component.ts class MyComponent { constructor(private router: Router){ } } //mycomponent.component.html <div *ngIf="router.url === '/some/route'"> </div>