具有默认选项的 AngularJS 指令

我刚刚开始使用AngularJS,并且正在努力将一些旧的jQuery插件转换为Angular指令。我想为我的(元素)指令定义一组默认选项,可以通过在属性中指定选项值来覆盖这些选项。

我四处寻找其他人这样做的方式,在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


答案 1

在指令的作用域块中使用属性的标志。=?

angular.module('myApp',[])
  .directive('myDirective', function(){
    return {
      template: 'hello {{name}}',
      scope: {
        // use the =? to denote the property as optional
        name: '=?'
      },
      controller: function($scope){
        // check if it was defined.  If not - set a default
        $scope.name = angular.isDefined($scope.name) ? $scope.name : 'default name';
      }
    }
  });

答案 2

您可以使用函数 - 如果未设置,则读取属性 - 用默认值填充它们。compile

.directive('pagination', ['$parse', 'paginationConfig', function($parse, config) {
    ...
    controller: 'PaginationController',
    compile: function(element, attrs){
       if (!attrs.attrOne) { attrs.attrOne = 'default value'; }
       if (!attrs.attrTwo) { attrs.attrTwo = 42; }
    },
        ...
  }
});