0

我有一个侧面菜单,我想更改这一面的项目

例如:如果用户是连接 ==> 项目我的帐户是显示

但如果用户未连接 ==> 项目我的帐户是隐藏

在我的控制器中:

facebookExample.controller("accueilController", function($scope, $cordovaOauth, $localStorage, $location,$ionicPopup,$state,$http) {

$scope.connect=true;
$localStorage.connect=true;

在 index.html 中:

<body ng-app="starter" ng-controller="accueilController" >
    <ion-item class="item" nav-clear menu-close href="#/login" ng-show="connect=='true'">
                             <i class="fa fa-user" style="padding-right: 190px;"></i> <div style="padding-left: 25px;padding-top: 5px;">My account  </div>                   
                            </ion-item>

我什么也没找到,我能做什么,我使用 ng-if 或 ng-how 以及如何?

请帮帮我

4

1 回答 1

0

尝试在 ng-show 中删除该检查

<body ng-app="starter" ng-controller="accueilController" >
<ion-item class="item" nav-clear menu-close href="#/login" ng-show="connect">
  <i class="fa fa-user" style="padding-right: 190px;"></i>
  <div style="padding-left: 25px;padding-top: 5px;">My account</div>                   
</ion-item>
于 2015-12-29T15:01:44.350 回答