La directive ng-répétition est parfait pour l'affichage des tables.
Affichage des données dans un tableau
Affichage des tables avec angulaire est très simple:
AngularJS Exemple
<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>
Essayez - le vous - même » Affichage avec style CSS
Pour le rendre agréable, ajouter un peu de CSS à la page:
CSS style
<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>
Essayez - le vous - même » Affichage avec orderBy Filtre
Pour trier le tableau, ajouter un filtre orderBy:
AngularJS Exemple
<table>
<tr ng-repeat="x in names | orderBy : 'Country'">
<td>{{ x.Name }}</td>
<td>{{ x.Country }}</td>
</tr>
</table>
Essayez - le vous - même » Affichage avec filtre en majuscules
Pour afficher en majuscules, ajouter un filtre en majuscules:
AngularJS Exemple
<table>
<tr ng-repeat="x in names">
<td>{{ x.Name }}</td>
<td>{{ x.Country
| uppercase }}</td>
</tr>
</table>
Essayez - le vous - même » Afficher l'indice Tableau (indice de $)
Pour afficher l'index de la table, ajoutez un <td> avec $ index:
AngularJS Exemple
<table>
<tr ng-repeat="x in names">
<td>{{ $index + 1 }}</td>
<td>{{ x.Name }}</td>
<td>{{ x.Country }}</td>
</tr>
</table>
Essayez - le vous - même » Utiliser $ même et $ impaire
AngularJS Exemple
<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>
Essayez - le vous - même »