cari

Rumah  >  Soal Jawab  >  teks badan

angular.js - Bagaimana untuk menyembunyikan tab dalam direktori tiga peringkat ionik atau direktori berbilang peringkat?

.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;
                })

            });
        }
    };
})

Pada masa ini, arahan ini digunakan untuk menyembunyikan direktori fon kepala

过去多啦不再A梦过去多啦不再A梦2792 hari yang lalu690

membalas semua(1)saya akan balas

  • ringa_lee

    ringa_lee2017-05-15 16:59:31

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

    Ini lebih berkuasa, tidak perlu memantau acara beforeEnter dan beforeLeave setiap halaman

    balas
    0
  • Batalbalas