現在我正在使用ngIf來查看Item Id是否爲1並且它做了一些樣式更改,但第二個語句仍然針對沒有item Id爲1的所有其他對象運行。我明白爲什麼會發生這種情況,但是如果在數組中的任何對象中都不存在Item Id 1,那麼是否只有運行第二條語句的方法?多謝ng如果檢查是否存在變量
<div *ngFor="let item of items">
<div *ngIf="(item.details.id == 1)">
Do Somthing
</div>
<div *ngIf="(item.details.id != 1)">
Do Somthing
</div>
</div>
也更新您的JSON – Aravind