Örnek
kayıtlar Dizideki her öğe için bir başlık yazın:
<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>
Kendin dene " Tanımı ve Kullanımı
ng-repeat
yönergesi HTML, saat belirli bir sayıda bir dizi tekrarlar.
HTML kümesi koleksiyonunda öğe başına bir kere tekrarlanacaktır.
toplama, bir dizi veya bir nesne olmalıdır.
Not: tekrarlama her örneği geçerli öğenin oluşmaktadır kendi kapsamını verilir.
Eğer nesnelerin bir koleksiyonunuz varsa, ng-repeat
yönergesi her nesne için bir tablo satırını görüntüleyen bir HTML tablosu yapmak için mükemmel değildir ve her biri için bir tablo veri özelliğini nesne. Aşağıdaki örneğe bakın.
Sözdizimi
< element ng-repeat=" expression "></ element >
tüm HTML elemanları tarafından desteklenir.
Parametre Değerleri
değer | Açıklama |
---|---|
expression | nasıl döngü koleksiyonu için belirten bir ifade. Yasal İfade örnekleri: x in records (key, value) in myObj |
Diğer Örnekler
Örnek
kayıtlar Dizideki her öğe için bir tablo satırını yazın:
<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>
Kendin dene " Örnek
Bir nesnenin her özellik için bir tablo satırını yazın:
<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>
Kendin dene "