我想檢查實際元素是否有值。Angular2 - ngIf in ngFor
例如,我想檢查巧克力是黑色還是白色。根據這個,我想顯示正確的文本。
<ng-container *ngFor="let chocolate of product.getChocolates();">
<md-card *ngIf="chocolate.getName() == black">IT IS BLACK</md-card>
<md-card *ngIf="chocolate.getName() == white">IT IS WHITE</md-card>
</ng-container>
如何修復代碼,使其工作?
複製錯誤....但那不是我正在尋找的答案:) – ALSTRA