📜  如何获取 ngfor 的索引 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:12.260000             🧑  作者: Mango

代码示例1
*ngFor="let item of items; index as i;" 
// OR
*ngFor="let item of items; let i = index;"
// i will be the index, starting from 0 
// and you can show it in the string interpolation with {{ i }}