无法在我的指令中从ng-token-auth获取$ auth.user数据

时间:2015-08-04 23:12:37

标签: angularjs angularjs-directive

我试图从angular-directiveng-token-auth获取用户数据信息,但没有成功。

当我打印$auth对象时,用户似乎没问题,但当我尝试从$auth.user检索用户数据时,信息不存在。

.directive('osAuthorize', function ($auth) {
  return {
    restrict: 'A',
    link: function(scope, element, attrs) {
      var needed_roles = attrs['osAuthorize'].split(',');    
      console.log($auth); // prints the full object within the user data
      console.log($auth.user); // prints {}
    }
  };

0 个答案:

没有答案