如何在下面的代码中使用* ngIf条件?

在这里我想检查的条件,但我无法检查。如何在下面的代码中使用* ngIf条件?

<text-avatar id="av" item-start [text]="item.BN" [color]="item.color">      

<ion-icon id="check" name="checkmark-circle" float-start></ion-icon>

</text-avatar>

回答:

就这么简单,其中someBoolean可以通过组件类检索的任何布尔值

home.tst

. . . 

class Home {

var someBoolean: boolean = false;

var myArray: any[];

constructor() {

// compare values with array here or in any other method

if (true) {

someBoolean = true;

}

}

}

home.html做为

<text-avatar id="av" item-start [text]="item.BN" [color]="item.color" *ngIf="someBoolean">      

<ion-icon id="check" name="checkmark-circle" float-start></ion-icon>

</text-avatar>

以上是 如何在下面的代码中使用* ngIf条件? 的全部内容, 来源链接: utcz.com/qa/261171.html

回到顶部