ionic 숨김tabs 방법

7540 단어 angularJSaddionic
일. ng-class="{'tabs-item-hide': $root.hideTabs}">
이.
이 컨트롤러 밑에 덧붙여라.directive:
var module = angular.module('app.directives', []); module.directive('hideTabs', function($rootScope) { return { restrict: 'A', link: function(scope, element, attributes) { scope.$watch(attributes.hideTabs, function(value){ $rootScope.hideTabs = value; }); scope.$on('$destroy', function() { $rootScope.hideTabs = false; }); } }; });

삼.
html 페이지에서hide-tabs 인용
 title="New Entry Form" hide-tabs> 

좋은 웹페이지 즐겨찾기