我正在尝试使用$ watch。 $ watch主体在页面初始化时触发(在newValue中未定义)而不是在“btnChangeIsLoggedIn”点击时点击。
<!DOCTYPE html>
<html data-ng-app="myApp">
<head><title>title</title></head>
<body>
<script src="lib/angular/angular.js"></script>
<div ng-controller="ctrl1">
<input type="text" ng-model="isLoggedIn" />
<input type="button" id="btnChangeIsLoggedIn"
value="change logged in" ng-click="change()" />
</div>
<script>
var myApp = angular.module('myApp', []);
myApp.service('authService', function () {
this.isLoggedIn = false;
});
myApp.controller('ctrl1', function ($scope, authService) {
$scope.isLoggedIn = authService.isLoggedIn;
$scope.$watch("authService.isLoggedIn", function (newValue) {
alert("isLoggedIn changed to " + newValue);
}, true);
$scope.change = function() {
authService.isLoggedIn = true;
};
});
</script>
</body>
</html>
我做错了什么?
我在JSFiddle的代码: http://jsfiddle.net/googman/RA2j7/
答案 0 :(得分:19)
您可以传递一个函数,该函数将返回Service方法的值。然后,Angular会将它与之前的值进行比较。
$scope.$watch(function(){
return authService.isLoggedIn;
}, function (newValue) {
alert("isLoggedIn changed to " + newValue);
});
演示:http://jsfiddle.net/TheSharpieOne/RA2j7/2/
注意:文本字段值未更新的原因是因为按钮仅更改服务的值,而不是$scope
。您还可以删除该初始警报(运行更改功能)但是将newValue
与oldValue进行比较,如果它们不同则仅执行语句。