Curriculum
Course: AngularJS
Login

Curriculum

AngularJS

AngularJS Tutorial

0/65
Text lesson

AngularJS Tables

The ng-repeat directive is ideal for rendering tables.

Displaying Data in a Table

Rendering tables with Angular is straightforward.

AngularJS Example

<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(“customers.php”)
  .then(function (response) {$scope.names = response.data.records;});
});
</script>