如何使用angular的装饰器模式扩充指令的链接功能?

时间:2016-07-05 14:35:08

标签: javascript angularjs angular-directive

我正在开发Angular库并寻找一种使用装饰器模式扩展指令的方法:

angular.module('myApp', []).decorator('originaldirectiveDirective', [
  '$delegate', function($delegate) {

    var originalLinkFn;
    originalLinkFn = $delegate[0].link;

    return $delegate;
  }
]);

使用此模式扩充原始指令的最佳方法是什么? (示例用法:在指令上有额外的监视或额外的事件监听器,而不直接修改它的代码)。

1 个答案:

答案 0 :(得分:5)

您可以非常轻松地修改或扩展指令controller。如果你正在寻找link(如你的例子),那就不那么难了。只需在compile阶段修改指令的config函数。

例如:

HTML模板

<body>
  <my-directive></my-directive>
</body>

<强>的JavaScript

angular.module('app', [])

  .config(function($provide) {
    $provide.decorator('myDirectiveDirective', function($delegate) {
      var directive = $delegate[0];

      directive.compile = function() {
        return function(scope) {
          directive.link.apply(this, arguments);
          scope.$watch('value', function() {
            console.log('value', scope.value);
          });
        };
      };

      return $delegate;
    });
  }) 

  .directive('myDirective', function() {
    return {
      restrict: 'E',
      link: function(scope) {
        scope.value = 0; 
      },
      template: '<input type="number" ng-model="value">'
    };
  });

现在,您已经装饰myDirective以便在更改时记录value

此处相关的plunker https://plnkr.co/edit/mDYxKj