現在、アイテム(オブジェクト)の配列を持つ角型アプリケーションで作業しています。私は、配列内の各オブジェクトを独自のリスト項目に表示したいが、リストの高さを9行に制限して、隣の新しいリストで開始する。したがって、配列に13の要素がある場合、配列[0]から配列[8]は最初の列の最初のリストに、配列[9]から配列[12]は新しいリストにリストされるべきです。 * ngForをindex = 9でループを止めるにはどうしたらいいですか?角度2 - ng For index <x
<div *ngIf="patients" class="col-sm-4" id="patientList">
<!--Patient 0 to 8 should go in this space-->
<table id="patientsTab">
<tr *ngFor="let patient of patients; let i = index;" class="patientRow" >
<td class="ptName"><button class="patientSelect" (click)="selectPatient(i)" >{{ patient.firstName }} {{ patient.lastName }}</button></td>
<td class="ptPersonnr">{{ patient.personnr }}</td>
</tr>
</table>
</div>
<div *ngIf="patients.length > 9" class="col-sm-4">
<!--Patient 9 to 13 should go in this space-->
</div>
<div *ngIf="patient" class="col-sm-4">
</div>
を使用することができます!とても明らかで、しかもスマートです! – ancasen