使用ng-if将额外数据添加到ng-repeat结果中

时间:2016-04-07 15:33:10

标签: ng-repeat

<th>Subsitute</th>
<th>Card</th>
<th>Sub</th> 
<th>Goal</th> 

<tr ng-repeat="val in lineUpSub">
   <td style="width:6em">{{lineUpSub[$index]['-n']}}</td>
   <td>{{leagueTable[$index]['-name']}}</td>
   <td>{{lineUpSub[$index]['-on']}}</td>
   <td>value</td>
</tr>   

此代码显示一个数组,可将足球数据输出到leaguetable。

每次触发{{lineUpSub [$ index] [&#39; -on&#39;]}}时,我都需要它显示一个箭头( - &gt;)。

数组触发数字,所以我希望它像

86(来自ng-repeat) - &gt;

我该怎么做?当列为空白时,我希望它保持空白。

1 个答案:

答案 0 :(得分:0)

lineUpSub[$index][-on]是否返回布尔值?

如果是这样,您只需添加以下内容:

<td> {{lineUpSub[$index][-on]}} {{ lineUpSub[$index][-on] ? "-->" : "" }} </td>