tutoriais mais recente desenvolvimento web
 

AngularJS tabelas


A directiva ng-repeat é perfeito para exibir tabelas.


Exibindo dados em uma tabela

Exibindo tabelas com angular é muito simples:

Exemplo 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>
Tente você mesmo "

Visualizadas com CSS Estilo

Para torná-lo agradável, adicione um pouco de CSS para a página:

CSS Estilo

<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>
Tente você mesmo "

Display com filtro orderBy

Para classificar a tabela, adicione um filtro orderBy:

Exemplo AngularJS

<table>
  <tr ng-repeat="x in names | orderBy : 'Country'">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>
Tente você mesmo "

Display com filtro de letras maiúsculas

Para exibir letras maiúsculas, adicione um filtro de letras maiúsculas:

Exemplo AngularJS

<table>
  <tr ng-repeat="x in names">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country | uppercase }}</td>
  </tr>
</table>
Tente você mesmo "

Exibir o índice da tabela ($ index)

Para exibir o índice da tabela, adicione um <td>, com US $ index:

Exemplo AngularJS

<table>
  <tr ng-repeat="x in names">
    <td>{{ $index + 1 }}</td>
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>
Tente você mesmo "

Usando $ mesmo e US $ estranho

Exemplo 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>
Tente você mesmo "