0

1 つのディレクティブ テンプレートに 2 番目のディレクティブが含まれる 2 つのディレクティブを使用しています。ng-transclude2 番目の (ネストされた) ディレクティブ内で使用したいと思います。どうすればこれを達成できますか? ここに plnkr があります。

<body ng-app="transcludeExample">
<script>
  angular.module('transcludeExample', [])
   .directive('pane', function(){
       return {
       restrict: 'E',
       transclude: true,
       scope: { title:'@' },
       template: '<div style="border: 1px solid black;">' +
                '<div style="background-color: yellow">{{title}}</div>' +
                '<test></test>' +
                //'<ng-transclude></ng-transclude>' +
              '</div>'
       };
  })
  .directive('test', function(){
       return {
         restrict: 'E',
         transclude: true,
         template: '<div><ng-transclude></ng-transclude></div>'
       };
  })
  .controller('ExampleController', ['$scope', function($scope) {
      $scope.title = 'Lorem Ipsuma';
      $scope.text = 'Neque porro quisquam est qui dolorem ipsum quia dolor...';
  }]);
</script>
<div ng-controller="ExampleController">
  <input ng-model="title"> <br/>
  <textarea ng-model="text"></textarea> <br/><br/><br/><br/><br/><br/>

  <pane title="{{title}}">{{text}}</pane>
</div>
</body>
4

1 に答える 1