0
我得到這個很簡單一次運行多次ng-repeat?
<table>
<tr>
<td ng-repeat="c in schedIdTableCtrl.calculateNumberOfColumns() track by $index">{{schedIdTableCtrl.calculateTime($index)}}</td>
</tr>
</table>
,並返回與504個元素的數組。
但是,當我console.log()
它說
(2) 504
(2) 504
504
因此,而不是隻運行一次,它正在運行五次?
我對這個JavaScript簡直是
ctrl.calculateNumberOfColumns =() => {
let columns = length/interval;
console.log(columns);
return new Array(columns);
};