9

我正在尝试在 AngularJS 指令中实现 OOP 继承以制作可重用的控件。我正在使用Base2 的类定义进行继承。我在想的是执行这样的指令

<control-input type="text" name="vendor_name"></control-input>

然后我会BaseControl为通用功能创建一个类

angular.module('base',[]).factory('BaseControl', function() {
  return Base.extend({
    'restrict': 'E',
    'require': '^parentForm'
    /* ... */
  };
});

然后我会创建特定的控件

angular.module('controls',['base']).factory('TextControl', function(BaseControl) {
  return BaseControl.extend({
    /* specific functions like templateUrl, compile, link, etc. */
  };
});

问题是我想使用单个指令control-input并在属性中指定类型,但问题是当我创建指令时,我不知道如何检索类型

angular.module('controls',['controls']).directive('control-input', function(TextControl) {
   /* here it should go some code like if (type === 'text') return new TextControl(); */
});

有任何想法吗?

4

1 回答 1

1

您可以使用attrs链接函数的参数来获取每个指令的类型。查看下面的代码并检查您的控制台。( http://jsbin.com/oZAHacA/2/ )

<html ng-app="myApp">
  <head>
   <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.6/angular.min.js"></script>
   <script>
      var myApp = angular.module('myApp', []);

     myApp.directive('controlInput', [function () {
        return {
          restrict: 'E',
          link: function (scope, iElement, iAttrs) {
              console.log(iAttrs.type);
          }
        };
     }]);

    </script>
  </head>
 <body>

    <control-input type="text" name="vendor_name"></control-input>

 </body>
</html>
于 2013-10-04T01:04:28.590 回答