搜尋

首頁  >  問答  >  主體

angular.js - ionic三級目錄甚至多層目錄如何隱藏tabs?

.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() {
                scope.$watch(attributes.hideTabs, function(value){
                    $rootScope.hideTabs = 'tabs-item-hide';
                });
                scope.$watch('$destroy',function(){
                    $rootScope.hideTabs = false;
                })

            });
        }
    };
})

目前是透過這個指令實現耳機目錄的隱藏

过去多啦不再A梦过去多啦不再A梦2744 天前659

全部回覆(1)我來回復

  • ringa_lee

    ringa_lee2017-05-15 16:59:31

    http://www.ithao123.cn/content-7470620.html

    這個更強大,不用監聽每個頁beforeEnter,beforeLeave事件

    回覆
    0
  • 取消回覆