如何在Ionic 2中获取活动选项卡索引?

ved*_*edu 4 tabs ionic2

有没有办法在Ionic 2中获得活动标签索引?我搜索过,在Ionic 1中有$ ionicTabsDelegate.

Dam*_*Arh 11

将事件对象传递给您的方法:

<ion-tabs (ionChange)="tabSelected($event)">
Run Code Online (Sandbox Code Playgroud)

事件对象实际上是选中的Tab:

tabSelected(tab: Tab) {
  console.log(tab.index);
}
Run Code Online (Sandbox Code Playgroud)