0

我正在使用 2 个指令,其中一个指令模板包含第二个指令。我想ng-transclude在第二个(嵌套)指令中使用。我怎样才能做到这一点?这是一个 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

1

不知道我是否遗漏了什么,但这似乎有效:

template: '<div style="border: 1px solid black;">' +
            '<div style="background-color: yellow">{{title}}</div>' +
            '<test><ng-transclude></ng-transclude></test>' +
          '</div>'
于 2014-12-11T16:50:35.393 回答