198

我正在尝试构建一个指令,该指令负责向其声明的元素添加更多指令。例如,我想构建一个指令来处理添加datepicker,datepicker-languageng-required="true".

如果我尝试添加这些属性然后使用$compile我显然会生成一个无限循环,所以我正在检查我是否已经添加了所需的属性:

angular.module('app')
  .directive('superDirective', function ($compile, $injector) {
    return {
      restrict: 'A',
      replace: true,
      link: function compile(scope, element, attrs) {
        if (element.attr('datepicker')) { // check
          return;
        }
        element.attr('datepicker', 'someValue');
        element.attr('datepicker-language', 'en');
        // some more
        $compile(element)(scope);
      }
    };
  });

当然,如果我没有$compile元素,属性将被设置但指令不会被引导。

这种方法是正确的还是我做错了?有没有更好的方法来实现相同的行为?

UDPATE:鉴于这$compile是实现这一目标的唯一方法,有没有办法跳过第一个编译过程(元素可能包含多个子元素)?也许通过设置terminal:true

更新 2:我尝试将指令放入一个select元素中,并且正如预期的那样,编译运行了两次,这意味着预期options 的数量是两倍。

4

7 回答 7

264

如果您在单个 DOM 元素上有多个指令并且它们的应用顺序很重要,您可以使用该priority属性来对它们的应用程序进行排序。较大的数字首先运行。如果您未指定优先级,则默认优先级为 0。

编辑:讨论后,这是完整的工作解决方案。关键是删除属性: element.removeAttr("common-things");,以及element.removeAttr("data-common-things");(如果用户data-common-things在 html 中指定)

angular.module('app')
  .directive('commonThings', function ($compile) {
    return {
      restrict: 'A',
      replace: false, 
      terminal: true, //this setting is important, see explanation below
      priority: 1000, //this setting is important, see explanation below
      compile: function compile(element, attrs) {
        element.attr('tooltip', '{{dt()}}');
        element.attr('tooltip-placement', 'bottom');
        element.removeAttr("common-things"); //remove the attribute to avoid indefinite loop
        element.removeAttr("data-common-things"); //also remove the same attribute with data- prefix in case users specify data-common-things in the html

        return {
          pre: function preLink(scope, iElement, iAttrs, controller) {  },
          post: function postLink(scope, iElement, iAttrs, controller) {  
            $compile(iElement)(scope);
          }
        };
      }
    };
  });

工作 plunker 可在以下网址获得:http ://plnkr.co/edit/Q13bUt?p=preview

或者:

angular.module('app')
  .directive('commonThings', function ($compile) {
    return {
      restrict: 'A',
      replace: false,
      terminal: true,
      priority: 1000,
      link: function link(scope,element, attrs) {
        element.attr('tooltip', '{{dt()}}');
        element.attr('tooltip-placement', 'bottom');
        element.removeAttr("common-things"); //remove the attribute to avoid indefinite loop
        element.removeAttr("data-common-things"); //also remove the same attribute with data- prefix in case users specify data-common-things in the html

        $compile(element)(scope);
      }
    };
  });

演示

解释为什么我们必须设置terminal: truepriority: 1000(一个高数字):

priority 当 DOM 准备好后,angular 会遍历 DOM 以识别所有已注册的指令,并根据这些指令是否在同一个元素上一一编译指令。我们将自定义指令的优先级设置为较高的数字,以确保首先编译它,并且在编译指令terminal: true后将跳过其他指令。

当我们的自定义指令被编译时,它将通过添加指令和删除自身来修改元素,并使用 $compile 服务来编译所有指令(包括那些被跳过的指令)

如果我们不设置terminal:trueand priority: 1000,则有可能在我们的自定义指令之前编译了一些指令。当我们的自定义指令使用 $compile 编译元素时 => 再次编译已经编译的指令。这将导致不可预知的行为,特别是如果在我们的自定义指令之前编译的指令已经转换了 DOM。

有关优先级和终端的更多信息,请查看如何理解指令的终端?

也修改模板的指令的示例是ng-repeat(priority = 1000),在ng-repeat编译时,ng-repeat 在应用其他指令之前制作模板元素的副本

感谢@Izhaki 的评论,这里是对ngRepeat源代码的引用:https ://github.com/angular/angular.js/blob/master/src/ng/directive/ngRepeat.js

于 2013-10-07T15:06:32.903 回答
10

实际上,您只需一个简单的模板标签就可以处理所有这些。有关示例,请参见http://jsfiddle.net/m4ve9/ 。请注意,我实际上不需要超级指令定义上的编译或链接属性。

在编译过程中,Angular 在编译之前提取模板值,因此您可以在此处附加任何其他指令,Angular 会为您处理。

如果这是一个需要保留原始内部内容的超级指令,您可以使用transclude : true并将里面替换为<ng-transclude></ng-transclude>

希望对您有所帮助,如果有任何不清楚的地方请告诉我

亚历克斯

于 2013-10-09T15:33:07.797 回答
6

这是一个将需要动态添加的指令移动到视图中并添加一些可选(基本)条件逻辑的解决方案。这使指令保持干净,没有硬编码逻辑。

该指令接受一个对象数组,每个对象包含要添加的指令的名称和传递给它的值(如果有)。

我一直在努力考虑这样的指令的用例,直到我认为添加一些仅基于某些条件添加指令的条件逻辑可能很有用(尽管下面的答案仍然是人为的)。我添加了一个可选if属性,该属性应包含一个布尔值、表达式或函数(例如在您的控制器中定义),以确定是否应添加指令。

我还attrs.$attr.dynamicDirectives用于获取用于添加指令(例如data-dynamic-directivedynamic-directive)的确切属性声明,而无需检查硬编码字符串值。

Plunker Demo

angular.module('plunker', ['ui.bootstrap'])
    .controller('DatepickerDemoCtrl', ['$scope',
        function($scope) {
            $scope.dt = function() {
                return new Date();
            };
            $scope.selects = [1, 2, 3, 4];
            $scope.el = 2;

            // For use with our dynamic-directive
            $scope.selectIsRequired = true;
            $scope.addTooltip = function() {
                return true;
            };
        }
    ])
    .directive('dynamicDirectives', ['$compile',
        function($compile) {
            
             var addDirectiveToElement = function(scope, element, dir) {
                var propName;
                if (dir.if) {
                    propName = Object.keys(dir)[1];
                    var addDirective = scope.$eval(dir.if);
                    if (addDirective) {
                        element.attr(propName, dir[propName]);
                    }
                } else { // No condition, just add directive
                    propName = Object.keys(dir)[0];
                    element.attr(propName, dir[propName]);
                }
            };
            
            var linker = function(scope, element, attrs) {
                var directives = scope.$eval(attrs.dynamicDirectives);
        
                if (!directives || !angular.isArray(directives)) {
                    return $compile(element)(scope);
                }
               
                // Add all directives in the array
                angular.forEach(directives, function(dir){
                    addDirectiveToElement(scope, element, dir);
                });
                
                // Remove attribute used to add this directive
                element.removeAttr(attrs.$attr.dynamicDirectives);
                // Compile element to run other directives
                $compile(element)(scope);
            };
        
            return {
                priority: 1001, // Run before other directives e.g.  ng-repeat
                terminal: true, // Stop other directives running
                link: linker
            };
        }
    ]);
<!doctype html>
<html ng-app="plunker">

<head>
    <script src="//code.angularjs.org/1.2.20/angular.js"></script>
    <script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.6.0.js"></script>
    <script src="example.js"></script>
    <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
</head>

<body>

    <div data-ng-controller="DatepickerDemoCtrl">

        <select data-ng-options="s for s in selects" data-ng-model="el" 
            data-dynamic-directives="[
                { 'if' : 'selectIsRequired', 'ng-required' : '{{selectIsRequired}}' },
                { 'tooltip-placement' : 'bottom' },
                { 'if' : 'addTooltip()', 'tooltip' : '{{ dt() }}' }
            ]">
            <option value=""></option>
        </select>

    </div>
</body>

</html>

于 2014-07-17T02:51:55.873 回答
4

我想添加我的解决方案,因为接受的解决方案对我来说不太适用。

我需要添加一个指令,但也要保留我的元素。

在此示例中,我向元素添加了一个简单的 ng 样式指令。为了防止无限编译循环并允许我保留我的指令,我在重新编译元素之前添加了一个检查以查看我添加的内容是否存在。

angular.module('some.directive', [])
.directive('someDirective', ['$compile',function($compile){
    return {
        priority: 1001,
        controller: ['$scope', '$element', '$attrs', '$transclude' ,function($scope, $element, $attrs, $transclude) {

            // controller code here

        }],
        compile: function(element, attributes){
            var compile = false;

            //check to see if the target directive was already added
            if(!element.attr('ng-style')){
                //add the target directive
                element.attr('ng-style', "{'width':'200px'}");
                compile = true;
            }
            return {
                pre: function preLink(scope, iElement, iAttrs, controller) {  },
                post: function postLink(scope, iElement, iAttrs, controller) {
                    if(compile){
                        $compile(iElement)(scope);
                    }
                }
            };
        }
    };
}]);
于 2015-02-04T20:55:09.103 回答
1

尝试将状态存储在元素本身的属性中,例如superDirectiveStatus="true"

例如:

angular.module('app')
  .directive('superDirective', function ($compile, $injector) {
    return {
      restrict: 'A',
      replace: true,
      link: function compile(scope, element, attrs) {
        if (element.attr('datepicker')) { // check
          return;
        }
        var status = element.attr('superDirectiveStatus');
        if( status !== "true" ){
             element.attr('datepicker', 'someValue');
             element.attr('datepicker-language', 'en');
             // some more
             element.attr('superDirectiveStatus','true');
             $compile(element)(scope);

        }

      }
    };
  });

我希望这可以帮助你。

于 2013-10-07T11:51:37.780 回答
1

从 1.3.x 到 1.4.x 发生了变化。

在 Angular 1.3.x 这工作:

var dir: ng.IDirective = {
    restrict: "A",
    require: ["select", "ngModel"],
    compile: compile,
};

function compile(tElement: ng.IAugmentedJQuery, tAttrs, transclude) {
    tElement.append("<option value=''>--- Kein ---</option>");

    return function postLink(scope: DirectiveScope, element: ng.IAugmentedJQuery, attributes: ng.IAttributes) {
        attributes["ngOptions"] = "a.ID as a.Bezeichnung for a in akademischetitel";
        scope.akademischetitel = AkademischerTitel.query();
    }
}

现在在 Angular 1.4.x 中,我们必须这样做:

var dir: ng.IDirective = {
    restrict: "A",
    compile: compile,
    terminal: true,
    priority: 10,
};

function compile(tElement: ng.IAugmentedJQuery, tAttrs, transclude) {
    tElement.append("<option value=''>--- Kein ---</option>");
    tElement.removeAttr("tq-akademischer-titel-select");
    tElement.attr("ng-options", "a.ID as a.Bezeichnung for a in akademischetitel");

    return function postLink(scope: DirectiveScope, element: ng.IAugmentedJQuery, attributes: ng.IAttributes) {

        $compile(element)(scope);
        scope.akademischetitel = AkademischerTitel.query();
    }
}

(来自接受的答案:来自 Khanh TO的https://stackoverflow.com/a/19228302/605586 )。

于 2015-12-29T14:32:47.710 回答
0

在某些情况下可行的一个简单解决方案是创建并 $compile 一个包装器,然后将您的原始元素附加到它。

就像是...

link: function(scope, elem, attr){
    var wrapper = angular.element('<div tooltip></div>');
    elem.before(wrapper);
    $compile(wrapper)(scope);
    wrapper.append(elem);
}

这个解决方案的优点是它通过不重新编译原始元素来保持简单。

require如果任何添加的指令的任何原始元素的指令或原始元素具有绝对定位,这将不起作用。

于 2016-02-26T20:31:28.483 回答