带有templateUrl和ng-repeat的自定义指令

时间:2013-10-04 09:26:36

标签: javascript angularjs angularjs-directive

我一直在研究这个问题几个小时,最后是i reproduced it on plunker

这是我的问题:

当使用外部资源作为模板的自定义指令与ng-repeat组合时,在模型更改时视图无法正确呈现。

在我的示例中,单击链接将替换模型,但旧数据尚未清除。

如果我使用template: 'stringTemplate'代替templateUrl: 'urlToTemplate',它就可以了。 仍然不知道这是一个错误还是什么......

部分代码:

angular.module('test', [])
    .run(function($rootScope) {
        $rootScope.topics = [{
            content: 'Click here to change reply',
            replys: [{
                content: 'Reply test...',
            }]
        }];
    })
    .directive('topic', function() {
        return {
            replace: true,
            restrict: 'E',
            templateUrl: 'topic.htm',
            link: function(scope) {
                scope.reply = function(input) {
                    scope.topic.replys = [{ content: '"Reply test..." should be replaced, but it\'s not!' }];
                }
            }
        };
    })
    .directive('reply', function() {
        return {
            replace: true,
            restrict: 'E',
            // template: '<div><div ng-bind="reply.content"></div></div>' //this works fine
            templateUrl: 'reply.htm' // same content
        };
    });

1 个答案:

答案 0 :(得分:1)

我做了一些研究,看来你在这个问题上并不孤单:

https://github.com/angular/angular.js/issues/2151

用户ishw提到,作为一个快速修复:

“对于那些可能还没有意识到的人:这是因为你的ng-repeat是在你的指令模板的根元素上。将你的ng-repeat包装在任何元素中都没关系。”

I tried this with your plunkr and it seems to be working

  <div> 
      <div class="topic" ng-bind="topic.content" ng-click="reply()"></div>
      <div ng-repeat="reply in topic.replys"><reply></reply></div>
  </div>