在這裏我想檢查的條件,但我無法檢查。如何在下面的代碼中使用* 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>
在這裏我想檢查的條件,但我無法檢查。如何在下面的代碼中使用* 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>
我必須檢查多個並與數組比較 –
我如何比較單個值到數組[1,2] –
對不起,遲到了,現在回答更新。 –
所以你要當某些事情已經完成時顯示一個複選標記,對嗎? –
是的!正確..你有我的問題 –