我正在尝试使用 cookie 值设置 ng-show 变量 isloggedout,该值正在工作(因此 $scope.isloggedout 为真或假),这应该触发显然不起作用的 ng-show 或 ng-hide。
我的应用控制器:
app.controller('projectCtrl', ['$scope', '$http', '$location', '$cookies', '$cookieStore', '$window',
function($scope, $http ,$location,$cookies,$cookieStore,$windows) {
$scope.isloggedout = $cookieStore.get('value');
}]);
我的 HTML:
<html ng-app="rjtApp" ng-controller="projectCtrl">
<div >
<ul class="nav navbar-nav navbar-right" >
<li><a href="#Signout" >Login <span class="glyphicon glyphicon-user" ng-show="isloggedout"></span></a></li>
<li><a href="#Login" >LogOut <span class="glyphicon glyphicon-user" ng-show="!isloggedout"></span></a></li></ul>
</div>
</html>
有什么帮助吗?