0
テーブルに単純なカウンタを追加するにはどうすればよいですか? (それだけでHTMLを使用して可能である場合)、私はそれは実際には非常に簡単です変数にこの番号を保存するためにテーブル内の行のカウンタ
HTML
<div class="table-responsive">
<table id="carTable" class="table table-bordred table-striped">
<thead>
<th>Car ID</th>
</thead>
<tbody>
<tr *ngFor="let car of cars">
<td>{{system.systemID}}</td>
</tr>
</tbody>
</table>
</div>
この回答を確認してください:https://stackoverflow.com/questions/43443963/angular2-ngfor-how-to-count-the-number-of-looping-values –
ここに、[完全なリスト](https:// angular.io/api/common/NgForOf#local-variables)を使用することができます。 –