我如何在嵌套的ng-repeat中引用父循环的$ index?

时间:2013-10-05 10:24:06

标签: angularjs pug angularjs-ng-repeat

我正在我的应用程序中嵌套ng-repeat。

因为我试图引用父循环的$ index

.div(ng-repeat= item in items)
  p(ng-repeat= detail in item.details)
    a(href='#') // $$ index ?

如何在嵌套的ng-repeat中引用父循环的$ index(即$ item of item)?

(上面的代码是玉)

1 个答案:

答案 0 :(得分:11)

使用范围'parent'$index$parent.$index。有点像(只是猜测,我对玉的了解不多):

.div(ng-repeat= item in items)
  p(ng-repeat= detail in item.details)
    a(ng-href='#/{{$parent.$index}}') 

工作示例(不是Jade):http://jsfiddle.net/Ysxsx/