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 に答える