Angularjs: 为什么1个绑定有3个观察者?

Angularjs: why there are 3 watchers for 1 binding?

请看下面的截图

如您在上面的屏幕截图中所见,单个绑定有 #3 个观察者。

谁能详细说明为什么会这样?

P.S:我正在使用 AngularJS Batarang 来检查性能。

var app = angular.module('app', []);

app.controller('appCtrl', function ($scope, $timeout) {
    $scope.name = 'vikas bansal';
})
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.min.js"></script>
    <script src="app.js"></script>
</head>

<body>
    <div ng-app="app" ng-controller="appCtrl">
        {{name}}
    </div>
</body>

</html>

我认为 Angular Batarang 的观察者计数器有误。我检查了几个不同的来源,除了 AngularJS Batarang 之外的所有来源都向我展示了您代码的单一观察者。看看这个 question 的函数:

(function () { 
    var root = angular.element(document.getElementsByTagName('body'));

    var watchers = [];

    var f = function (element) {
        angular.forEach(['$scope', '$isolateScope'], function (scopeProperty) { 
            if (element.data() && element.data().hasOwnProperty(scopeProperty)) {
                angular.forEach(element.data()[scopeProperty].$$watchers, function (watcher) {
                    watchers.push(watcher);
                });
            }
        });

        angular.forEach(element.children(), function (childElement) {
            f(angular.element(childElement));
        });
    };

    f(root);

    // Remove duplicate watchers
    var watchersWithoutDuplicates = [];
    angular.forEach(watchers, function(item) {
        if(watchersWithoutDuplicates.indexOf(item) < 0) {
             watchersWithoutDuplicates.push(item);
        }
    });

    console.log(watchersWithoutDuplicates.length);
})();

并且您可以检查 Watchers chrome 的扩展名。两者都显示 1 个观察者。