2017-04-11 34 views
1

我應該在哪裏放置ng-repeat指令和{{expression}}以獲取從1到7的數字,在<td>中正確(我已經手動放置它們)代碼:正確的將AngularJS ng-repeat和表達式放置在引導表中

`<h1> January 2017 </h1> 
<table class="table table-bordered"> 
    <tr class="active"> 
     <th> # </th> 
     <th> Sunday </th> 
     <th> Monday </th> 
     <th> Tuesday </th> 
     <th> Wednesday </th> 
     <th> Thursday </th> 
     <th> Friday </th> 
     <th> Saturday </th> 
    </tr> 
    <tr class="other"> 
     <th class="active"> 1 </th> 
     <td> 1 </td> 
     <td> 2 </td> 
     <td> 3 </td> 
     <td> 4 </td> 
     <td> 5 </td> 
     <td> 6 </td> 
     <td> 7 </td> 
    </tr> 
</table>` 
+0

它應該是這樣的 ' {{}}' –

+0

@ Hadi Jeddizahed它的工作。非常感謝您的幫助! – Rico11112016

回答

1

Here你有 「正確的方式」 解釋。在部分「跟蹤和重複」你可以看到一個例子:

<div ng-repeat="n in [42, 42, 43, 43] track by $index"> 
    {{n}} 
</div> 

,在您的情況可以翻譯成:

<td ng-repeat="n in [1,2,3,4,5,6,7]"> 
    {{n}} 
</td>