Ionic v3网络应用程序:点击事件有时不会触发

时间:2018-05-21 10:18:14

标签: angular events ionic3

我正在使用ionic3开发移动网络应用。加载新页面后,点击事件有时无法正常工作。但是当我刷新页面时,它几乎总能再次运行。

我使用以下命令构建应用程序:

ionic build --prod --platform browser


<ion-tabs [selectedIndex]="index" id="Menubar">
  <ion-tab  [root]="tab1Root" tabTitle="tab1" tabUrlPath="rep" tabIcon="tab-replen" *ngIf="repAuth" (ionSelect)="onSelect($event)"></ion-tab>
  <ion-tab [root]="tab2Root" tabTitle="tab2" tabUrlPath="man" tabIcon="tab-manage" *ngIf="manAuth" (ionSelect)="onSelect($event)"></ion-tab>
  <ion-tab [root]="tab3Root" tabTitle="tab3" tabUrlPath="per" tabIcon="tab-personal" *ngIf="perAuth" (ionSelect)="onSelect($event)"></ion-tab>
</ion-tabs>

在组件中,有一种测试方法:

onSelect(e) {
  alert('selected');
}

0 个答案:

没有答案