0

我的主 (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>

谢谢是的。

4

1 回答 1

0

您将表格部分放在一个单独的组件中的想法看起来很有效,但是从 app.component.ts 移动到 dashboard.ts 的分页逻辑被破坏了并且单击下一页(转到下一页但在一秒钟内立即回到第 1 页 agian) 现在不工作了。无论如何,如果问题仍然存在,我会调查分页问题并返回董事会。谢谢你的帮助!

谢谢是的

于 2017-11-20T17:04:47.010 回答