在有tabs的项目里,进入子层级时,底部导航还一直存在,本人是要让他只在首页几个界面存在,其他的隐藏,在这里用到了angularjs的指令,要完成这个步骤分为三步:
在标签ion-tabs中添加:ng-class=”{‘tabs-item-hide': $root.hideTabs}”,源码如下
添加angularjs的指令,源码如下:
文件中指定,如var app = angular.module("starter",["ionic"])
app.directive('hideTabs',function($rootScope) {
return {
restrict: 'A',link: function(scope,element,attributes) {
scope.$on('$ionicView.beforeEnter',function() {
scope.$watch(attributes.hideTabs,function(value){
$rootScope.hideTabs = 'tabs-item-hide';
});
});
scope.$on('$ionicView.beforeLeave',function(value){
$rootScope.hideTabs = 'tabs-item-hide';
});
scope.$watch('$destroy',function(){
$rootScope.hideTabs = false;
})
});
}
};
});
在想要隐藏的界面标签 ion-view添加表达式hide-tabs=”true”,源码如下:
文件
{{chat.lastText}}
以上所述是小编给大家介绍的ionic进入多级目录后隐藏底部导航栏(tabs)的完美解决方案。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持。
原文链接:https://www.f2er.com/js/44238.html