本文为大家分享了ionic隐藏tabs的方法,供大家参考,具体内容如下
1.
rush:cpp;">
2. 在该控制器下加上.directive:
rush:cpp;">
var module = angular.module('app.directives',[]);
module.directive('showTabs',function ($rootScope) {
return {
restrict: 'A',link: function ($scope,$el) {
$rootScope.hideTabs = false;
}
};
}).directive('hideTabs',$el) {
$rootScope.hideTabs = true;
}
};
})
3. 在html页面中引用hide-tabs
rush:cpp;">
4.
当页面返回主页面时,需要再次显示tabs,则需要在该控制器中加上(主要是解决android上tabs还是隐藏的问题):
5.
我用的是tabs-top,还遇到的一个问题是:
rush:cpp;">
.directive('hideTabs',link: function (scope,element,attributes) {
scope.$on('$ionicView.beforeEnter',function () {
scope.$watch(attributes.hideTabs,function (value) {
$rootScope.hideTabs = value;
});
});
s<a href="https://www.jb51.cc/tag/cop/" target="_blank" class="keywords">cop</a>e.$on('$ionicView.beforeLeave',function () {
$rootS<a href="https://www.jb51.cc/tag/cop/" target="_blank" class="keywords">cop</a>e.hideTabs = false;
});
}
};
})
来个总结吧,相对于tabs用法,如果是在底部的话,上边的那些不会有什么太大的问题。但如果是用在顶部的话,涉及到content,会遇到一点问题。
其实可以考虑使用ionic上的