Angular ngFor访问索引

问题描述 投票:-1回答:2

如何在ngFor中访问索引?

https://stackblitz.com/edit/angular-ekze7q

谢谢

javascript angular ngfor
2个回答
3
投票

你忘了在ngFor中添加*,var名称错误

<p *ngFor="let i of Arr(count); let index = index">
  <button (click)="removeElement(index)">test</button>
</p>

2
投票

如果你想使用索引打印编号试试这个,它会对你有所帮助。

<ul *ngFor="let item of Array; let i = index">
 <li> {{i+1}}={{item.name}}</li> 
</ul>

供参考:https://angular.io/api/common/NgForOf

© www.soinside.com 2019 - 2024. All rights reserved.