search

Home  >  Q&A  >  body text

angular.js - angularjs权限问题

angularjs项目中,有部分功能需要登录才能访问,现在我只能控制用户点击导航的时候判断是否已登录,如果直接用链接访问的话就不能判断用户是否登录。下面是我的方法

$scope.login = function(){
    $scope.unlogin = false;
    //登录操作
}
$scope.login = function(){
    $scope.unlogin = true;
    //退出操作
}
<a ng-if="unlogin" ui-sref="login">我的收藏</a>
<a ng-if="!unlogin" ui-sref="myData">我的收藏</a>

要想实现,用户直接用链接访问也能检测是否登录,应该怎么做?

習慣沉默習慣沉默2739 days ago524

reply all(1)I'll reply

  • 怪我咯

    怪我咯2017-05-15 17:12:42

    Successful login, save a cookie, and then determine the cookie

    reply
    0
  • Cancelreply