奥里利亚重复项目的访问索引

我有一个简单的repeat.for:

<li repeat.for="item of items">${item}</li> 

目前我正在使用: ${$parent.items.indexOf(item)} 。 有没有简写,像{{$ index}}在angular度?

有。 写这个:

 <li repeat.for="item of items">${$index} - ${item}</li> 
Interesting Posts