예
레코드의 배열의 각 항목에 대해 하나의 헤더 쓰기 :
<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 |
더 예
예
레코드 배열의 각 항목에 대한 하나의 테이블 행을 작성합니다 :
<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>
»그것을 자신을 시도