Ionic - item在导航栏中进行双向数据绑定

时间:2016-05-14 12:35:24

标签: javascript angularjs ionic-framework

导航栏中的图标应根据位置true / false切换显示与否。视图中的测试工作完美,但结果在导航栏中不起作用。两个页面都使用相同的控制器。翻译英语

index.html - nav-bar

<ion-nav-bar class="bar-stable" ng-controller="DashCtrl">
  <ion-nav-buttons side="right">
    <i class="icon ion-eye ng-show="vaovivo.valor"></i>
  </ion-nav-buttons>
<ion-nav-bar

Account.html - 切换

<ion-toggle ng-model="vaovivo.valor" ng-checked="vaovivo.valor">
  Modo ao Vivo
</ion-toggle>

Controllers.js

angular.module(&#39; starter.controllers&#39;,[])

.controller('DashCtrl', function($scope,$rootScope) {    
  $scope.vaovivo = {'valor':false}
})

app.js

.config(function($stateProvider, $urlRouterProvider) {

  $stateProvider

  // setup an abstract state for the tabs directive
    .state('tab', {
    url: '/tab',
    abstract: true,
    templateUrl: 'templates/tabs.html'
  })

  // Each tab has its own nav history stack:

  .state('tab.dash', {
    url: '/dash',
    views: {
      'tab-dash': {
        templateUrl: 'templates/tab-dash.html',
        controller: 'DashCtrl'
      }
    }
  })
  .state('tab.account', {
    url: '/account',
    views: {
      'tab-account': {
        templateUrl: 'templates/tab-account.html',
        controller: 'DashCtrl'
      }
    }
  });

  // if none of the above states are matched, use this as the fallback
  $urlRouterProvider.otherwise('/tab/dash');

});

更新 index.html - nav-bar

<ion-nav-bar class="bar-stable" ng-controller="DashCtrl">
  <ion-nav-buttons side="right">
    <i class="icon ion-eye" ng-show="vaovivo.valor"></i>
  </ion-nav-buttons>
<ion-nav-bar>

1 个答案:

答案 0 :(得分:0)

逻辑看起来很合理,但有一件事可能会阻止ng-show在导航栏中工作。您没有正确关闭ion-nav-bar,可能是问题所在。

首先,通过添加结束语

来正确关闭ng-class
<i class="icon ion-eye" ng-show="vaovivo.valor"></i>

然后正确关闭离子导航条。

</ion-nav-bar>