التوجيه-نغ تكرار مثالية لعرض الجداول.
عرض البيانات في الجدول
عرض الجداول مع الزاوي هو بسيط جدا:
AngularJS مثال
<div ng-app="myApp" ng-controller="customersCtrl">
<table>
<tr ng-repeat="x in names">
<td>{{ x.Name }}</td>
<td>{{ x.Country }}</td>
</tr>
</table>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl',
function($scope, $http) {
$http.get("http://www.w3ii.com/angular/customers.php")
.then(function (response) {$scope.names = response.data.records;});
});
</script>
انها محاولة لنفسك » عرض مع النمط المغلق
لجعل لطيفة، وإضافة بعض CSS إلى الصفحة:
النمط المغلق
<style>
table, th , td {
border: 1px solid grey;
border-collapse: collapse;
padding: 5px;
}
table tr:nth-child(odd) {
background-color: #f1f1f1;
}
table tr:nth-child(even) {
background-color: #ffffff;
}
</style>
انها محاولة لنفسك » عرض مع تصفية orderBy
لفرز الجدول، إضافة عامل تصفية orderBy:
AngularJS مثال
<table>
<tr ng-repeat="x in names | orderBy : 'Country'">
<td>{{ x.Name }}</td>
<td>{{ x.Country }}</td>
</tr>
</table>
انها محاولة لنفسك » عرض مع تصفية الكبيرة
لعرضهم الأحرف الكبيرة، إضافة فلتر الأحرف الكبيرة:
AngularJS مثال
<table>
<tr ng-repeat="x in names">
<td>{{ x.Name }}</td>
<td>{{ x.Country
| uppercase }}</td>
</tr>
</table>
انها محاولة لنفسك » عرض مؤشر الجدول (مؤشر $)
لعرض مؤشر الجدول، إضافة <td> مع مؤشر $:
AngularJS مثال
<table>
<tr ng-repeat="x in names">
<td>{{ $index + 1 }}</td>
<td>{{ x.Name }}</td>
<td>{{ x.Country }}</td>
</tr>
</table>
انها محاولة لنفسك » باستخدام $ حتى و$ الغريب
AngularJS مثال
<table>
<tr ng-repeat="x in names">
<td ng-if="$odd"
style="background-color:#f1f1f1">{{ x.Name }}</td>
<td ng-if="$even">{{
x.Name }}</td>
<td ng-if="$odd" style="background-color:#f1f1f1">{{
x.Country }}</td>
<td ng-if="$even">{{ x.Country }}</td>
</tr>
</table>
انها محاولة لنفسك »