一、js代码
1 | $scope.range = function(n) { |
通过new Array(n)创建指定大小容量的数组。
二、html代码
1 | <div class="list-group-horizontal"> |
遍历数组,并通过track by $index来指定数组索引为$index。
三、输出结果
输出结果为:1 2 3 4 5 6
四、参考文档
Way to ng-repeat defined number of times instead of repeating over array?