新的堆栈溢出和相当新的Angular - 说中级。
所以我有一个问题,我正在使用* ngFor循环来创建和填充HTML表的前三列,然后我想使用单独的* ngFor条件来遍历从firestore数据库到填充的文档集合满足特定条件的表的行,直到我希望应用if条件的最后一列为内容应用两个选项之一。
难以用语言进行描述所以这里有一些代码可以描绘更好的图片:
用于创建HTML表的JSON:
tables: any [] = [
{
'time': 1200,
'number': 1,
'covers': 2
},
{
'time': 1200,
'number': 2,
'covers': 2
},
{
'time': 1200,
'number': 3,
'covers': 2
},
{
'time': 1230,
'number': 1,
'covers': 2
},
{
'time': 1230,
'number': 2,
'covers': 2
},
{
'time': 1230,
'number': 3,
'covers': 2
},
{
'time': 1300,
'number': 3,
'covers': 2
},
{
'time': 1300,
'number': 1,
'covers': 2
},
{
'time': 1300,
'number': 2,
'covers': 2
},
{
'time': 1300,
'number': 3,
'covers': 2
}
];
HTML表格,其中filteredReservations是firestore get请求返回的文档集合的数组:
<table class="table">
<thead>
<th>Time</th>
<th>Table</th>
<th>Covers</th>
<th>Name</th>
<th>Contact</th>
<th>Created By</th>
<th>Status</th>
<th>Actions</th>
</thead>
<tbody>
<tr *ngFor="let table of tables">
<td>{{table.time}}</td>
<td>{{table.number}}</td>
<ng-container *ngFor="let reservation of filteredReservations">
<ng-container *ngIf="table.time == reservation.time && table.number == reservation.table">
<td>{{reservation.covers}}</td>
<td>{{reservation.name}}</td>
<td>{{reservation.contact}}</td>
<td>{{reservation.createdBy}}</td>
<td>{{reservation.status}}</td>
<ng-container>
<td *ngIf="table.time == reservation.time && table.number == reservation.table; else empty">
<button mat-icon-button [routerLink]="['/new', reservation.id]">
<mat-icon>edit</mat-icon>
</button>
</td>
</ng-container>
</ng-container>
</ng-container>
</tr>
</tbody>
</table>
<ng-template #empty>
<td>
<button mat-icon-button [routerLink]="['/new']">
<mat-icon>edit</mat-icon>
</button>
</td>
</ng-template>
预期的结果是将使用第一个* ngFor创建HTML表格,filteredReservations将出现在符合条件的行中,最后一列将显示一个编辑图标,该图标将链接到添加新预订或编辑现有位置条件得到满足。
当我试图实现我最后一列的目标时,重复的次数与集合中的文档一样多次,即我需要最后一列在filteredReservations循环之外,但仍然使用预留数据来检查if条件。
我的目标是:1
我目前得到的是:2
我试图尽可能地解释,所以希望这是有道理的。
我不会在html中进行迭代。喜欢在component.ts中执行此操作:
<tbody>
<tr *ngFor="let table of tables" >
<td>{{table.time}}</td>
<td>{{table.number}}</td>
<ng-template let-reservation="findReservation(table)">
<td>{{reservation.covers}}</td>
<td>{{reservation.name}}</td>
<td>{{reservation.contact}}</td>
<td>{{reservation.createdBy}}</td>
<td>{{reservation.status}}</td>
<td *ngIf="reservation">
<button mat-icon-button [routerLink]="['/new', reservation.id]">
<mat-icon>edit</mat-icon>
</button>
</td>
</ng-template>
</tr>
</tbody>
和
findReservation(table: Table): Reservation {
return this.filteredReservations.find(reservation => {/*your check*/})
}