在<pre> tag</pre>内部重复信息的最佳方法

时间:2013-12-10 21:30:47

标签: angularjs angularjs-ng-repeat

我想使用angular的ngRepeat或类似方法在“pre”块中创建一些格式化文本。例如,像这样:

function MyController($scope)
{
   $scope.data = [{test:'one', children:[...]},{test:'two', children:[...]}]; 
}

<pre>
  {{ngRepeat item in data}}
  {{item.test}}
       {{ngRepeat child in item.children}}
           {{child.title}}
       {{/ngRepeat}}
  {{/ngRepeat}}
</pre>

显然,我可以建立字符串,但我很好奇是否有办法在Angular模板中执行此操作。

1 个答案:

答案 0 :(得分:1)

这不可能你必须有一个父元素才能重复 - 我最近尝试了同样的事情

我的解决方案是

<mytag ng-repeat="x in y">{{x}}</mytag>