离子2标题不显示侧边菜单“条形图”

时间:2017-06-09 14:25:53

标签: html ionic2 side-menu

我在我正在开发的离子2应用程序中添加了一个侧面菜单,修改了离子给出的“超级”模板。我在app.html中添加了以下代码:

<ion-menu [content]="content">

  <ion-header>      
    <ion-toolbar>
      <ion-title>Menu</ion-title>
    </ion-toolbar>
  </ion-header>

  <ion-content>
    <ion-list>
      <button ion-item *ngFor="let p of pages" (click)="openPage(p)">
        {{p.title}}
      </button>
    </ion-list>
  </ion-content>

</ion-menu>

<ion-nav [root]="rootPage" #content swipeBackEnabled="false"></ion-nav>

如果我向左滑动,菜单会正确显示,但问题是,在页面标题中,我看不到打开菜单的三个栏:

enter image description here

从文档中看来,只需将此代码添加到html即可显示三个条形图,但它对我不起作用。我是否必须更改所有页面标题中的内容?我不知道,也许超级模板本身会覆盖页面标题中的内容,以便不显示条形图?

1 个答案:

答案 0 :(得分:3)

您可以尝试添加buttonicon。 像这样:

<ion-header>
    <ion-navbar>
        <button ion-button menuToggle>
            <ion-icon name="menu"></ion-icon>
        </button>
        <ion-title>Menu</ion-title>
    </ion-navbar>
</ion-header>