Javascript 表行的角度JS ng重复

Javascript 表行的角度JS ng重复,javascript,angularjs,twitter-bootstrap,angularjs-ng-repeat,Javascript,Angularjs,Twitter Bootstrap,Angularjs Ng Repeat,我正在使用以下引导表: <table class="table table-striped"> <thead> <tr> <th>Episode Date</th> <th>Day</th> <th>Projected Cost</th> <th>Comments</th>

我正在使用以下引导表:

<table class="table table-striped">
   <thead>
      <tr>
         <th>Episode Date</th>
         <th>Day</th>
         <th>Projected Cost</th>
         <th>Comments</th>
      </tr>
   </thead>
   <tbody>
      <tr ng-repeat="epi in episodes">
         <td>
            <input type="hidden" ng-model="epi.COST_PRG_EPS_TXN_ID" />
            <label>{{epi.PRG_EPISODE_DATE_DIS | date:'dd-MMM-yyyy'}} </label>
         </td>
         <td>{{ epi.PRG_EPISODE_DAY }}</td>
         <td>
            <input type="text" ng-model="epi.COST_PROJECTED" onkeypress="return OnlyNumeric(event);" />
         </td>
         <td>
            <input type="text" ng-model="epi.COMMENTS" />
         </td>
      </tr>
   </tbody>
</table>
我得到一个错误:

TypeError:无法读取null的属性“insertBefore”

当我对表行tr使用ng repeat时

但是,当我将ng repeat剪切并粘贴到tbody时,它工作正常

要求在桌子内重复tr而不是T。我怎么做


您是否在角度范围外移除trs?它在角度范围内请告诉我们更多。你们是怎么做到的?{{集}}在表中?你们的表在范围内吗?这里是你们的一个例子。。。这对我来说似乎很好??