2017-12-12 11 views
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> 
+0

この回答を確認してください:https://stackoverflow.com/questions/43443963/angular2-ngfor-how-to-count-the-number-of-looping-values –

+0

ここに、[完全なリスト](https:// angular.io/api/common/NgForOf#local-variables)を使用することができます。 –

答えて

2

が好きdは:今

<tr *ngFor="let car of cars; let i = index"> 
    <td>{{system.systemID}}</td> 
</tr> 

iは、あなたのカウンターです!

0

現在地

<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;let i = index"> 
       <td>{{i +1}}</td> 
      </tr> 
     </tbody> 
    </table> 
</div> 

あなたの変数iとして格納され、それがゼロのインデックスから始まるようにループのためにインデックス番号を追加することができます。

関連する問題