gpt4 book ai didi

javascript - 在 *ngIf、Angular 2 中使用插值访问本地模板变量

转载 作者:行者123 更新时间:2023-11-30 11:45:39 25 4
gpt4 key购买 nike

假设我有这种情况;

<div *ngFor="item of items; let i = index;">
<div *ngIf="variable{{i}}">show if variable{{i}} is true</div>
</div>

我已经定义了变量“variable0”、“variable1”、...如何使用 *ngIf 中的插值以这种方式访问​​变量?我知道 *ngIf 是一个单独的模板,这就是它看不到“i”变量的原因,但我如何将它传递到 *ngIf 模板并使用它?

最佳答案

我想这应该行得通

*ngIf="this['variable' + i]"

Plunker

关于javascript - 在 *ngIf、Angular 2 中使用插值访问本地模板变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41066269/

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