(Değişikliğin gerekebilir body
için html
ya nerede olursanız olun koymak ng-app
)
(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);
})();
Erilem sayesinde bu cevapta $isolateScope
arama eksikti ve izleyiciler potansiyel olarak kendi cevabında / yorumunda kopyalanıyor.
'body'
Değiştirilmesi gerekebileceğine işaret ettiği için Ben2307'ye teşekkürler .
orijinal
Sınıf yerine HTML öğesinin veri özniteliğini kontrol etmem dışında aynı şeyi yaptım. Seninkini burada koştum:
http://fluid.ie/
Ve 83 aldım. Benimkini çalıştırdım ve 121 var.
(function () {
var root = $(document.getElementsByTagName('body'));
var watchers = [];
var f = function (element) {
if (element.data().hasOwnProperty('$scope')) {
angular.forEach(element.data().$scope.$$watchers, function (watcher) {
watchers.push(watcher);
});
}
angular.forEach(element.children(), function (childElement) {
f($(childElement));
});
};
f(root);
console.log(watchers.length);
})();
Bunu benimkine de koydum:
for (var i = 0; i < watchers.length; i++) {
for (var j = 0; j < watchers.length; j++) {
if (i !== j && watchers[i] === watchers[j]) {
console.log('here');
}
}
}
Ve hiçbir şey basılmadı, bu yüzden benimkinin daha iyi olduğunu tahmin ediyorum (daha fazla saat bulduğunda) - ama benimkinin çözüm setinin uygun bir alt kümesi olmadığından emin olmak için samimi açısal bilgiye sahip değilim.
$scope
birinin o denetleyicideki izleyicilerin sayısı ile bir $$ watchers dizisi vardır (iyi bir tekrarlama veya başka bir kapsam oluşturan bir şey varsa, bu iyi çalışmaz). Ancak tüm uygulamadaki tüm saatleri görmenin bir yolu olmadığını düşünüyorum.