所以我有一个ng-repeat嵌套在另一个ng-repeat中,以构建一个导航菜单。在内部ng-repeat循环的每个<li>上,我设置了一个ng-click,通过传入$index来调用该菜单项的相关控制器,让应用程序知道我们需要哪个。然而,我还需要从外部ng-repeat传递$index,以便应用程序知道我们在哪个部分以及哪个教程。
<ul ng-repeat="section in sections">
<li class="section_title {{section.active}}" >
{{section.name}}
</li>
<ul>
<li class="tutorial_title {{tutorial.active}}" ng-click="loadFromMenu($index)" ng-repeat="tutorial in section.tutorials">
{{tutorial.name}}
</li>
</ul>
</ul>
这是普伦克http://plnkr.co/edit/bJUhI9oGEQIql9tahIJN?p=preview