我有一个使用 Angularjs 和 Ionic-v1 的应用程序。
我有一个通用标题栏,其中有 2 个图标(一个用于 Tab1,一个用于 Tab2)。在屏幕底部我有 2 个选项卡(Tab1 和 Tab2)。
当我在 Tab1 中时,我只想显示 Tab1 的图标。当我在 Tab2 中时,我只想显示 Tab2 的图标。
<div ng-click="menu.changeLayout()">
<a class="icon_one" ng-if="!grid"></a>
<a class="icon_change" ng-if="grid"></a>
<a class="icon_one_test" ng-if="!grid1"></a>
<a class="icon_change_test" ng-if="grid1"></a>
</div>
In this line <a class="icon_one_test" ng-if="!grid1"></a> ,Is there any way to hide icon_one and icon_change class?Or is there any other way to do this.
角码
$rootScope.grid=false;
$rootScope.grid1=false;
menu.changeLayout=function(){
console.log("current state"+$state.current.name);
if($state.current.name=='menu.tab1'){
console.log('tab1');
$rootScope.grid=!$rootScope.grid;
}
else if($state.current.name=='menu.tab2'){
console.log('tab2');
$rootScope.grid1=!$rootScope.grid1;
}
}
如何实现这一点。任何人都可以帮助我如何做到这一点。