最新的Web開發教程
 

AngularJS NG-重複指令


寫出記錄陣列中的每個項目一個頭:

<body ng-app="myApp" ng-controller="myCtrl">

<h1 ng-repeat="x in records">{{x}}</h1>

<script>
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope) {
    $scope.records = [
        "Alfreds Futterkiste",
        "Berglunds snabbkop",
        "Centro comercial Moctezuma",
        "Ernst Handel",
    ]
});
</script>

</body>
試一試»

定義和用法

ng-repeat指令重複一組HTML,一個給定的次數的。

該組HTML將每一次項目的集合中重複。

集合必須是一個數組或一個對象。

注:重複的每個實例都給出了自己的範圍,其中包括目前的項目。

如果有對象的集合,所述ng-repeat指令是完美的製作HTML表格,顯示一個表行對於每個對象,並為每一個表中的數據對象屬性。 參見下面的例子。


句法

< element ng-repeat=" expression "></ element >

所有HTML元素的支持。


參數值

Value Description
expression An expression that specifies how to loop the collection.

Legal Expression examples:

x in records

(key, value) in myObj

x in records track by $id(x)

更多示例

寫一個表行的記錄陣列中的每個項目:

<table ng-controller="myCtrl" border="1">
    <tr ng-repeat="x in records">
        <td>{{x.Name}}</td>
        <td>{{x.Country}}</td>
    </tr>
</table>

<script>
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope) {
    $scope.records = [
       {
            "Name" : "Alfreds Futterkiste",
            "Country" : "Germany"
        },{
            "Name" : "Berglunds snabbkop",
            "Country" : "Sweden"
        },{
            "Name" : "Centro comercial Moctezuma",
            "Country" : "Mexico"
        },{
            "Name" : "Ernst Handel",
            "Country" : "Austria"
        }
    ]
});
</script>
試一試»

寫一個表行中的對象的每個屬性:

<table ng-controller="myCtrl" border="1">
    <tr ng-repeat="(x, y) in myObj">
        <td>{{x}}</td>
        <td>{{y}}</td>
    </tr>
</table>

<script>
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope) {
    $scope.myObj = {
        "Name" : "Alfreds Futterkiste",
        "Country" : "Germany",
        "City" : "Berlin"
    }
});
</script>
試一試»