我今天第一次玩指令,并试图构建一个可重用的进度条指令(基于 Bootstrap 3.0),我可以根据值动态填充或清空。指令定义如下:
directive('progressBar', function () {
var success = 'progress-bar progress-bar-success';
var warning = 'progress-bar progress-bar-warning';
var danger = 'progress-bar progress-bar-danger';
var setCssStyling = function (width) {
if (width >= 50) {
return success;
} else if (width >= 20) {
return warning;
} else {
return danger;
}
}
var formatWidth = function (width) {
return 'width: ' + width + '%';
}
return {
restrict: 'E',
scope: {},
template: '<div class="progress progress-striped active">' +
'<div ng-class="cssStyle" role="progressbar" style="{{ width }}"></div>' +
'</div>',
link: function (scope, element, attrs) {
if (attrs.width) {
scope.width = formatWidth(attrs.width);
} else {
scope.width = formatWidth(0);
}
scope.$watch(attrs.width, function (newVal) {
scope.width = formatWidth(newVal);
scope.cssStyle = setCssStyling(newVal);
});
}
}
});
考虑到这些测试用法,这完全按计划工作:
<progress-bar width="100"></progress-bar>
<progress-bar width="45"></progress-bar>
<progress-bar width="15"></progress-bar>
我希望做的是能够动态地将宽度属性绑定到我的控制器中的一个变化值,这样进度条的宽度和样式就会移动。我尝试绑定到控制器中每秒更改的值:
<progress-bar width="{{ today.seconds }}"></progress-bar>
但是,当我检查该进度条的范围时,宽度始终设置为width: undefined%
. 有没有更好的方法来完成动态更新这样的内容,或者我在范围或一些愚蠢的事情上遗漏了什么?