angularjs $apply 数据绑定 张映 发表于 2014-02-27 分类目录: js/jquery 标签:$apply, angular, angularjs, js js代码都是顺序执行的,如果遇到异步执行,并且带有返回值,angularjs是怎么处理的呢?下面以实例详细说明一下$apply的功能。 1,angularjs数据绑定了,但是没有在html中显示出来 查看复制打印? phonecatControllers.controller('PhoneDetailCtrl', ['$scope', '$routeParams', function($scope, $routeParams) { $scope.user = ''; $scope.test = function() { setTimeout(function () { $scope.user = "good"; }, 2000); } $scope.test1 = function() { $scope.user = 'tank'; } $scope.test1(); $scope.test(); console.log($scope); } ]); 上例解释: 正常理解是:在html显示tank,2秒后,会变成good。 实际情况是:html显示tank,2秒后,不会成good。 我开始以为是setTimeout里面的程序并没有执行,但是我用console.log($scope);发现$scope.user值改变了,是good,但是为什么没有在html里面体现出来呢。 怎么样才能让html中的{{user}}自动变呢。 查看复制打印? $scope.test = function() { setTimeout(function () { $scope.$apply(function () { $scope.user = "good"; }); }, 2000); } 这样就可以了,在html显示tank,2秒后,会变成good。 2,第三方登录,登录成功后,读取返回值 查看复制打印? $scope.getUserInfo = function(response){ FB.api('/me', function(response1) { $scope.$apply(function() { $scope.user = { 'AccessToken':response.authResponse.accessToken, 'facebook_uid':response.authResponse.userID, 'name':response1.name } }); }); } 登录到成功后,从第三方api接口,读取个人信息,也是一个异步的过程。感觉$apply,就是为了异步负值用的。