我有一个Ionic 2应用程序,用户可以从家里 - >'主题视图'(其中包含一个返回按钮到主页和一个侧面菜单,如此:)

<ion-menu id="itemHierarchy-{{_pageId}}" side="right" persistent="true" [content]="content">
    //toolbar stuff
</ion-menu>

<ion-header>
    <ion-navbar>
        <button ion-button right menuToggle="itemHierarchy-{{_pageId}}">
      <ion-icon name="list"></ion-icon>
    </button>
        <ion-title>name</ion-title>
    </ion-navbar>
</ion-header>

<ion-content #topicView padding>
</ion-content>

我在'topic-view'页面中有一个链接导航到另一个'topic-view'页面(通过deeplinker将其推送到堆栈),并且在其中新的侧面菜单无法打开 . 我认为这是因为堆栈中有两个'topicView''离子内容'节点,但是这些节点不能分配动态ID,因此不确定如何修复它...任何人?