代码很简单:
<!doctype html>
<html ng-app="plunker" >
<head>
<meta charset="utf-8">
<title>AngularJS Plunker</title>
<script>document.write("<base href=\"" + document.location + "\" />");</script>
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.js"></script>
</head>
<body ng-controller="MainCtrl">
Hello {{name()}}!
</body>
</html>
<script>
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.name= function() {
console.log("---name---:" + new Date());
return "Freewind";
};
});
</script>
你可以看到有一个name
函数,我们只在体内调用它一次。但是在控制台中,它会打印两次---name---:
:
---name---:Wed Feb 20 2013 14:38:12 GMT+0800 (中国标准时间)
---name---:Wed Feb 20 2013 14:38:12 GMT+0800 (中国标准时间)
您可以在此处看到现场演示:http://plnkr.co/edit/tb8RpnBJZaJ73V73QISC?p=preview
为什么函数name()
被调用了两次?
答案 0 :(得分:42)
在AngularJS中,包含在双花括号中的任何内容都是expression,在摘要周期内至少会被评估
。AngularJS通过持续运行摘要周期直到没有任何改变来工作。这就是它确保视图是最新的方式。因为你调用了一个函数,所以它运行一次得到一个值,然后第二次看到没有任何改变。在下一个摘要周期中,它至少会再次运行。
出于这个原因,通常只从模板中调用幂等方法(如name
)是个好主意。