我的主 (app.component.html) 视图中有两个 html 部分 - 一个用于导航到子页面的按钮导航栏,另一个部分用于显示记录表。When select a record of the table I expect the details page of the record should display in the router-outlet but the table should be disappeared. 但是详细信息页面显示在表格下方,而我希望当应用程序路由到子页面(详细信息页面)时记录表应该消失。任何帮助如何实现这一点将不胜感激。
这是我的代码:
<div class="navbar bg-inverse">
<div class="container">
<a href="#" class="navbar-brand">Home</a>
<a routerLink="/general" routerLinkActive="active" class="navbar-brand">General</a>
<a routerLink="/financial" routerLinkActive="active" class="navbar-brand">Financial</a>
<a routerLink="/termsheet" routerLinkActive="active" class="navbar-brand">Term Sheet</a>
<a routerLink="/capitalization" routerLinkActive="active" class="navbar-brand">Capitalization</a>
</div>
</div>
<!--I don't want below section of the main displaying when routed to child page
<h1>table of records here</h1>
<router-outlet></router-outlet>
谢谢是的。