Ionic2 menuToggle动态隐藏

问题描述 投票:0回答:4

我正在使用Ionic2,并希望在用户事件中显示/隐藏menuToggleThis是如何在Ionic1中完成的。有谁知道如何在Ionic2中做到这一点?

enter image description here

谢谢

angular ionic2
4个回答
1
投票
<ion-header>
    <ion-navbar>
       <button ion-button menuToggle>
         <ion-icon name="menu"></ion-icon>
       </button>
     </ion-navbar>
</ion-header>

从您不想显示菜单栏的页面中删除此HTML代码。


0
投票

假设你使用Menu,ToggleMenu组件,这里就是你的解决方案

菜单栏内容

<ion-menu [content]="mycontent" [enabled]="customVariable">
  <ion-content>
    <ion-list>
      <ion-item menuClose detail-none>Close Menu</ion-item>
    </ion-list>
  </ion-content>
</ion-menu>

userEvent(){
    this.customVariable=false;
}

0
投票

假设您的代码如下:

<ion-menu [content]="mycontent" [class.hide]="hideMenu">
 <ion-content>
   <ion-list>
     <ion-item menuClose detail-none>Close Menu</ion-item>
   </ion-list>
 </ion-content>
</ion-menu>

然后在Component的.scss文件中添加隐藏样式:

.hide{display: none !important}

最后,在.ts文件中,您可以通过更改“hideMenu”的值来控制menuToggle的显示状态,例如,

hideMenu: boolean = false; // at first the menuToggle is show
....
btnClicked(){
  this.hideMenu = !this.hideMenu;
}

0
投票

您可以使用'ionic-angular'事件。

在用户事件上使用此代码块:

this.events.publish("nameOfYourEvent", params)
//params => optional

订阅活动

this.events.subscribe("nameOfYourEvent",(params) => {
    //toggleMenuVisibility Code goes here
    this.hideMenu = true;
})

在视图上:

<button ion-button menuToggle *ngIf="!hideMenu">//[hidden] attribute is not working for some reason.
  <ion-icon name="menu"></ion-icon>
</button>

不要忘记从'ionic-angular'导入Events类。

从'ionic-angular'导入{Events};

© www.soinside.com 2019 - 2024. All rights reserved.