我正在尝试在ngFor中使用ngIf,但它只是破坏了我的代码。以下是我的代码:
<ion-row *ngIf="{{i % 3}}===0" *ngFor="let category of categories; let i=index">
我需要检查索引mod 3是否等于零
答案 0 :(得分:3)
您可以覆盖以下代码:
<ion-row *ngFor="let category of categories; let i=index">
<ng-container *ngIf="{{i % 3}}===0">
...
</ng-container>
</ion-row>
ng-container
与template
的行为相同,但您可以使用*ngIf
和*ngFor
等常用语法
答案 1 :(得分:0)
你不能把ngIf和ngFor放在同一个组件上
答案 2 :(得分:0)
i
将无法正常工作