我刚开始使用 angularjs,并且正在努力将一些旧的 JQuery 插件转换为 Angular 指令。我想为我的 (element) 指令定义一组默认选项,可以通过在属性中指定选项值来覆盖它们。
我环顾了一下其他人的做法,在angular-ui库中,ui.bootstrap.pagination似乎做了类似的事情。
首先,所有默认选项都定义在一个常量对象中:
.constant('paginationConfig', {
itemsPerPage: 10,
boundaryLinks: false,
...
})
然后将一个getAttributeValue
实用函数附加到指令控制器:
this.getAttributeValue = function(attribute, defaultValue, interpolate) {
return (angular.isDefined(attribute) ?
(interpolate ? $interpolate(attribute)($scope.$parent) :
$scope.$parent.$eval(attribute)) : defaultValue);
};
最后,这在链接函数中用于读取属性为
.directive('pagination', ['$parse', 'paginationConfig', function($parse, config) {
...
controller: 'PaginationController',
link: function(scope, element, attrs, paginationCtrl) {
var boundaryLinks = paginationCtrl.getAttributeValue(attrs.boundaryLinks, config.boundaryLinks);
var firstText = paginationCtrl.getAttributeValue(attrs.firstText, config.firstText, true);
...
}
});
对于想要替换一组默认值的标准设置,这似乎是一个相当复杂的设置。还有其他常见的方法吗?或者总是getAttributeValue
以这种方式定义一个实用函数并解析选项是否正常?我很想知道人们对这项共同任务有什么不同的策略。
另外,作为奖励,我不清楚为什么interpolate
需要该参数。