最新のWeb開発のチュートリアル
 

AngularJS ngのリピート指令


レコード配列内の各アイテムごとに1つのヘッダを書きます:

<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ディレクティブは、オブジェクトごとに1つの表の行が表示され、HTMLテーブルを作るための完璧であり、各オブジェクトのプロパティの1つの表のデータ。 以下の例を参照してください。


構文

< 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)

その他の例

レコード・アレイ内の各項目に対して1つのテーブルの行を記述します。

<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>
»それを自分で試してみてください

オブジェクトの各プロパティに対して1つの表の行を記述します。

<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>
»それを自分で試してみてください