ionic中二级页面隐藏tabs(tabs-item-hide)
当我们在文章页面的时候我们不想显示底部的tab,或者我们就有一些页面不想显示底部的tab 我们怎么实现呢
1.tabs页面
<ion-tabs class=”tabs-icon-top tabs-positie {{hideTabs}}>
…
</ion-tabs>
2.跳转后页面
<ion-view hide-tabs>
..
</ion-view>
3. 指令
.directive(‘hideTabs’,function($rootScope){
return {
restrict:’AE’,
link:function($scope){
$rootScope.hideTabs = ‘tabs-item-hide’;
$scope.$on(‘$destroy’,function(){
$rootScope.hideTabs = ‘ ‘;
})
}
}
}