0
我有一系列數字$ scope.N = [1,2,3,4];我想在我的HTML代碼到NG-重複這個,像JSON NG重複例如AngularJS循環數組(一系列數字)
<tr ng-repeat="row in categories">
<td>{{row.category}}</td>
</tr>
霍夫這樣做與數字陣列?
我有一系列數字$ scope.N = [1,2,3,4];我想在我的HTML代碼到NG-重複這個,像JSON NG重複例如AngularJS循環數組(一系列數字)
<tr ng-repeat="row in categories">
<td>{{row.category}}</td>
</tr>
霍夫這樣做與數字陣列?
事情是這樣的:
<tr ng-repeat="num in [1, 2, 3, 4, 5, 6]">
<td ng-bind="num"></td>
</tr>
當然你可以聲明數組在你的控制器:
$scope.numbers = [1, 2, 3, 4, 5, 6];
然後用:
<tr ng-repeat="num in numbers">
<td ng-bind="num"></td>
</tr>
做ü想顯示數組值在下拉菜單中? – Jagadeesh