谢谢
在这里,我在php中使用的代码
@for($i= 0; $i < 15; $i++)
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
@endfor
但我想用角度+HTML写它
我试过这个但不起作用
<tr ng-repeat="rows in other_line">
<td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td>
</tr>
在我的控制器中
$scope.other_line =15;
请帮我解决它。
ng-repeat需要一个数组,你已经提供了一个值$scope.other_line =15;
。ng-repeat运行数组中的代码.长度时间
所以你的代码应该是这样的
$scope.other_line = [];
$scope.other_line.length = 15;
<div ng-repeat="rows in other_line">
<td></td
</div>
当这将在浏览器中执行时,它将运行 15 次
<div ng-repeat="rows in other_line">
<td></td
</div>
<div ng-repeat="rows in other_line">
<td></td
</div>
<div ng-repeat="rows in other_line">
<td></td
</div>
.
.
.
.
<div ng-repeat="rows in other_line">
<td></td
</div>