Temelde bu, kullandığım çözüm.
$ apply () yalnızca doğru koşullarda harici kaynaklar tarafından kullanılmalıdır.
Uygula'yı kullanmak yerine, çağrı yığınının sonuna kapsam güncellemesini attım. "Kapsam. $ Apply (attrs.imageonload) (true);" kadar iyi çalışır.
window.app.directive("onImageload", ["$timeout", function($timeout) {
function timeOut(value, scope) {
$timeout(function() {
scope.imageLoaded = value;
});
}
return {
restrict: 'A',
link: function(scope, element, attrs) {
element.bind('load', function() {
timeOut(true, scope);
}).bind('error', function() {
timeOut(false, scope);
});
}
};
}]);