私は角度2で新しいです。私は状態0を含む予約リストを表示したいと思います。私はこのリストのコンポーネント、サービス、およびHTMLファイルを作成していますが、リストを取得していますが、コンポーネントHTMLファイルは最適化したいです。角度2のJSONファイルにステータス0を含むリストを表示したい
もここに私のコンポーネントのHTMLファイルがある
<table class="table table-striped">
<thead>
<tr>
<th>User ID</th>
<th>Email</th>
<th>Name</th>
<th>Date</th>
<th>Time</th>
<th>Zip Code</th>
<th>Amount</th>
<th>Payment Method</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let booking of upcomingBookings">
<td *ngIf="booking.status==0">{{booking.user_id}}</td>
<td *ngIf="booking.status==0">{{booking.email}}</td>
<td *ngIf="booking.status==0">{{booking.name}}</td>
<td *ngIf="booking.status==0">{{booking.date}}</td>
<td *ngIf="booking.status==0">{{booking.time}}</td>
<td *ngIf="booking.status==0">{{booking.zipcode}}</td>
<td *ngIf="booking.status==0">{{booking.amount}}</td>
<td *ngIf="booking.status==0">{{booking.payment_method | uppercase}}</td>
<td *ngIf="booking.status==0">{{booking.status}}</td>
</tr>
</tbody>
</table>
ブリリアント試す追加する代わりに
td
タグ..必要はありません以上の要素のあなたのtr
タグに*ngIf="booking.status==0"
を追加しますか? –驚くばかり!ポイントはどこですか? –