关于此错误,我已经有多个关于stackoverflow的主题,但我总是不理解我的上下文中的问题。
我有这个模板:
<div class="progress">
<div class="progress-bar"
data-toggle="tooltip"
title="Parts offertes : {{ '{{ gift.gived_parts}}' }} / {{ '{{ gift.number_of_parts }}' }}"
data-bar="gived"
>
<span ng-class="{true:'op7', false:''}[gift.percent_done > 0 && gift.percent_done < 20]">
{{ '{{ gift.gived_parts}}' }}
</span>
</div>
<div class="progress-bar progress-bar-danger progress-bar-striped progress-bar-animate active op7"
data-toggle="tooltip"
title="Parts réservées : {{ '{{ gift.total_reserved}}' }} / {{ '{{ gift.number_of_parts }}' }}"
data-bar="reserved">
</div>
对于此指令:
app.directive('progressBarD', function() {
return {
restrict: 'E',
templateUrl: rootUrl + '/directive/progressBar',
scope: {
gift: '=gift'
},
link: function ($scope, $elem, attrs) {
var bars = $elem.find(".progress-bar");
bars.each(function() {
var bar = $(this);
var percent = (bar.context.dataset.bar === "gived")
? $scope.gift.percent_done
: $scope.gift.percent_reserved;
if (($().appear) && isMobileDevice === false && (bars.hasClass("no-anim") === false) ) {
bar.appear(function () {
bar.addClass("progress-bar-animate").css("width", percent + "%");
}, {accY: -150} );
} else {
bar.css("width", percent + "%");
}
});
}
};
});
这是指令的召唤:
<progress-bar-d gift="gift"></progress-bar-d>
在执行期间,我收到此错误:
Error: [$compile:ctreq] Controller 'progress', required by directive 'bar', can't be found!
http://errors.angularjs.org/1.3.15/$compile/ctreq?p0=progress&p1=bar
at angular.js:63
at getControllers (angular.js:7583)
at nodeLinkFn (angular.js:7772)
at angular.js:7998
at processQueue (angular.js:13248)
at angular.js:13264
at Scope.$get.Scope.$eval (angular.js:14466)
at Scope.$get.Scope.$digest (angular.js:14282)
at Scope.scopePrototype.$digest (hint.js:1468)
at Scope.$get.Scope.$apply (angular.js:14571)
在屏幕上,链接功能看起来有效,但最后,当gift.percent_done与0不同时,第一个desapear内部。
你能解释一下为什么我有这个角度误差吗?删除跨度是否是同样的问题?
答案 0 :(得分:0)
最后我发现了问题。
在anguluar指令中,我更改了bar.context.dataset.bar并且它可以工作。 我不知道为什么这个问题没有得到很好的解释,但现在可以解决了。