是否可以在其自己的模板中再次使用指令?

时间:2015-07-17 06:28:32

标签: javascript angularjs web-applications angularjs-directive javascript-framework

我正试图写一篇评论' angular中的指令,用于加载嵌套注释(来自Json数据),并为子注释/回复重用相同的指令。

父评论加载得很好,但是当我尝试使用'评论'该指令在其自己的模板中再次被冻结,我必须将其关闭。

以下是我的一些代码:

app.html:---

  <ul ng-repeat="comment in View2.postItems | limitTo: 10">

    <comments collection="comment"></comments>

  </ul>

comments.html(指令):----

<li>      
  <span>
    {{ collection.data.commentText }}

    <ul ng-show="{{collection.data.replies}}"
        ng-repeat="comment in collection.data.replies.data.children">

      <!-**child comments: this line causes the app to freeze:**-->
      <comments collection="comment"></comments>

    </ul>

  </span>
</li>

comments.js:---

var comments = function(){
  return {
    templateUrl : 'modules/comments/comments.html',
    restrict:'E',
    scope:{
      collection: '='
    },
    link: function(scope, element, attrs){

    }
  };
};

1 个答案:

答案 0 :(得分:2)

您可以使用$compile服务构建递归指令,以有条件地附加子指令。示例:(http://plnkr.co/edit/WpNp20DSjJhO412j3cSw?p=preview

function comment($compile) {
    return {
      template: '<span ng-bind="comment.text"></span>',
      link: function(scope, element) {
        if (angular.isArray(scope.comment.collection)) {
              element.append($compile('<comments collection="comment.collection"></comments>')(scope));
        }
      }
    }
}

function comments(){
  return {
    template : '<ul><li ng-repeat="comment in collection"><comment></comment></li></ul>',
    scope:{
      collection: '='
    }
  };
}