Najnowsze tutoriale tworzenie stron internetowych
 

AngularJS stoły


Dyrektywa ng-repeat jest idealny do wyświetlania tabel.


Wyświetlanie danych w tabeli

Wyświetlanie tabel kątowo jest bardzo prosta:

angularjs Przykład

<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>
Spróbuj sam "

Wyświetlanie z Style CSS

Żeby było miło, dodać trochę CSS do strony:

Style 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>
Spróbuj sam "

Wyświetlacz z orderby Filter

Aby posortować tabelę, należy dodać filtr orderby:

angularjs Przykład

<table>
  <tr ng-repeat="x in names | orderBy : 'Country'">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>
Spróbuj sam "

Wyświetlacz z wielką Filter

Aby wyświetlić wielkie, dodać filtr wielką:

angularjs Przykład

<table>
  <tr ng-repeat="x in names">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country | uppercase }}</td>
  </tr>
</table>
Spróbuj sam "

Wyświetla indeks tablicy ($ index)

Aby wyświetlić indeks tabeli, dodać <td> z $ indeksie:

angularjs Przykład

<table>
  <tr ng-repeat="x in names">
    <td>{{ $index + 1 }}</td>
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>
Spróbuj sam "

Korzystanie $ i $ nawet dziwne

angularjs Przykład

<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>
Spróbuj sam "