本文介绍了在 Ionic 2 中选择特定选项卡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用 Ionic 2,但仍在努力完成大多数基本任务,例如在加载应用时选择一个标签.
I'm trying to use the Ionic 2 and I'm still struggling with most basic tasks, such as select a tab when the app is loading.
我尝试注入 Tabs
控制器并在 onPageLoaded
事件上调用 select
,但无济于事.
I've tried to inject the Tabs
controller and call select
on the onPageLoaded
event, but to no avail.
有人可以帮忙吗?
推荐答案
要在 ionic 2 中默认为选项卡,请更改 selectedIndex 属性:
To default to a tab in ionic 2 change the selectedIndex property:
<ion-tabs [selectedIndex]="1">
<ion-tab [root]="tab1Root" tabTitle="Home" tabIcon="rewind"></ion-tab> <!-- Index 0-->
<ion-tab [root]="tab2Root" tabTitle="About" tabIcon="md-time"></ion-tab><!-- Index 1 (Selected)-->
<ion-tab [root]="tab3Root" tabTitle="Contacts" tabIcon="fastforward"></ion-tab><!-- Index 2-->
</ion-tabs>
页面加载时,关于"选项卡将成为选中的选项卡.
The About tab will be the selected tab when the page loads.
这篇关于在 Ionic 2 中选择特定选项卡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!