gpt4 book ai didi

Angular:在 ngFor 中获取当前索引

转载 作者:太空狗 更新时间:2023-10-29 17:29:48 24 4
gpt4 key购买 nike

我有以下 Angular :

<div class="test" *ngFor="let item of data; let i = index">
{{item}}
</div>

<div class="function_div" (click)="test(i);">Test Button </div>

然后在.ts中,

export class test{

test(){
console.log(i);
}

}

我想获取一个带有当前索引号的变量。

我该怎么做才能获得当前索引?

谢谢

最佳答案

根据 OP 对问题的评论:

So, I am trying to get the index of the ngFor in order to do acomparison to array of data before triggering another function. Forexample, the test() function will be triggered when I click a button,then it will check the current index, and do something with it.

你应该这样做:

<div class="test" *ngFor="let item of data; let i = index">
// In your case this line should be within ngFor loop
<div class="function_div" (click)="test(i);">Test Button </div>
{{item}}
</div>

Note : Never call function like :

{{ test(i) }} // this will be executed each time anything changes inloop

关于Angular:在 ngFor 中获取当前索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49123807/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com