39

我正在尝试绑定到 rootscope,以便在用户登录时可以在不同的服务器上设置存在。这是我的模块。

angular.module('presence', 
  [
  ]
)

.run(function ($rootScope) {
  $rootScope.$watch($rootScope.currentUser, function () {
    console.log('change currentUser')
    console.log($rootScope.currentUser)
    presence.setGlobal({
      u: $rootScope.currentUser,
      s: 'on'
    })
  })
})

没有控制器,因为它只是关于用户的全局存在,与 DOM 无关。

这不起作用,手表运行一次,但在随后的更改中不再运行。谢谢你的帮助。

编辑:登录代码如下所示:

  $scope.login = function() {
    $http.post('http://localhost:3000/login', $scope.user).success(function(res, status) {
      if (res && res._id) {
        $rootScope.currentUser = res
      }
    }).error(function(res, status) {
      $scope.error = res.err
    });
  };

这段代码在 DOM 中更新得很好。它在 html 中显示用户名,例如:

a.user(ui-if="currentUser", ng-href="/user/{{currentUser._id}}") {{currentUser.username}}
4

2 回答 2

69

The syntax was $rootScope.$watch('currentUser') not $rootScope.$watch($rootScope.currentUser)

于 2013-06-06T20:35:07.623 回答
1

有些东西需要改变$rootScope.currentUser,你才能注意到它的任何变化。您已经共享了代码。

$rootScope.currentUser需要在 angularJS 循环(http://docs.angularjs.org/guide/concepts)内进行更改。如果在外部完成,您可以调用 $digest ( http://docs.angularjs.org/api/ng .$rootScope.Scope#$digest)

于 2013-06-02T23:54:19.523 回答