1

我正在尝试实现http://logicbomb.github.io/ng-directives/drag-drop.html指令。我有另一个指令,我正试图将其包含在...

angular.module('MyApp') 
  .directive('seconddirective', function ($rootScope, $lvlDraggable) {
    return {
      restrict: 'A',

但这不起作用……这可能吗?

4

1 回答 1

3

你可以参考这个:

http://www.bennadel.com/blog/2471-Delegating-Nested-Directive-Behavior-To-Parent-Directive-In-AngularJS.htm

或者这个: 在指令中嵌套指令

于 2013-10-11T00:44:57.537 回答