AngularJS:ng-repeat track by $index在嵌套循环中

前端之家收集整理的这篇文章主要介绍了AngularJS:ng-repeat track by $index在嵌套循环中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要第二个$ index我的嵌套的ng-repeat循环。如何和在哪里放它?

AngularJS site

Creating aliases for these properties is possible with ngInit. This
may be useful when,for instance,nesting ngRepeats.

<div ng-repeat="person in persons track by $index">
    <div ng-repeat="something in array track by $index2"> <!-- where to init this and how to manage it?-->

如果我再次使用$ index,它似乎工作,但我不知道这是正确的事情吗?
我相信有一个简单而正确的做法,我只是不能找到一个例子。

谢谢

$ index将引用最内层ngRepeat范围上的索引,所以如果这是你需要的,你可以使用它。

文档描述的是一个场景,其中您需要访问在父ngRepeat中的$ index。你可以通过几种方式得到它:一个是使用$ parent,另一个是使用ngInit,如Angular docs建议的。这里有一个例子…

<li ng-repeat="thing in things" ng-init="parentIndex = $index">
    {{ $index }}
    <ul>
        <li ng-repeat="value in thing.values">
            {{ value }} 
            {{ $index }} <!-- inner $index -->
            {{ $parent.$index }} <!-- parent $index -->
            {{ parentIndex }} <!-- also parent $index -->
        </li>
    </ul>
</li>

Fiddle

原文链接:https://www.f2er.com/angularjs/145241.html

猜你在找的Angularjs相关文章