标签: angular
我希望能够通过孩子的位置来选择他们。例如:
myBean
有可能吗?
答案 0 :(得分:0)
使用结构指令ngFor,然后使用索引
<ul> <li *ngFor="let item of items; let i = index"> {{i}} {{item}} </li>