最新のWeb開発のチュートリアル
 

AngularJSテーブル


ngのリピートディレクティブは、テーブルを表示するために最適です。


表のデータの表示

角度を持つテーブルを表示する非常に簡単です:

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スタイルで表示

それはいいようにするには、ページにいくつかのCSSを追加します。

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フィルタ付きディスプレイ

テーブルを並べ替えるには、 並べ替え基準フィルタを追加します。

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>
»それを自分で試してみてください