tutorial pengembangan web terbaru
 

AngularJS tabel


Direktif ng-repeat sempurna untuk menampilkan tabel.


Menampilkan Data dalam Tabel

Menampilkan tabel dengan sudut sangat sederhana:

AngularJS Contoh

<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>
Cobalah sendiri "

Menampilkan dengan CSS Style

Untuk membuatnya bagus, menambahkan beberapa CSS ke halaman:

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>
Cobalah sendiri "

Display dengan orderby Filter

Untuk mengurutkan tabel, menambahkan filter orderby:

AngularJS Contoh

<table>
  <tr ng-repeat="x in names | orderBy : 'Country'">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>
Cobalah sendiri "

Display dengan huruf besar Filter

Untuk menampilkan huruf besar, menambahkan filter huruf besar:

AngularJS Contoh

<table>
  <tr ng-repeat="x in names">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country | uppercase }}</td>
  </tr>
</table>
Cobalah sendiri "

Menampilkan Table Index ($ index)

Untuk menampilkan indeks tabel, menambahkan <td> dengan $ index:

AngularJS Contoh

<table>
  <tr ng-repeat="x in names">
    <td>{{ $index + 1 }}</td>
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>
Cobalah sendiri "

Menggunakan $ bahkan dan $ aneh

AngularJS Contoh

<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>
Cobalah sendiri "