请看下面给出的截图
如您在上面的屏幕截图中所见,单个绑定(bind)具有#3观察者。
谁能解释为什么会这样吗?
附注:我正在使用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);
})();
并且您可以检查chrome的Watchers扩展名。两者都显示1个观察者。
关于javascript - Angular.js:为什么有3个监视程序进行1个绑定(bind)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39992312/