Skip to content

Instantly share code, notes, and snippets.

@rwenderlich
Created October 28, 2016 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rwenderlich/3ed5cf115bff11f088b5982273525fb2 to your computer and use it in GitHub Desktop.
Save rwenderlich/3ed5cf115bff11f088b5982273525fb2 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
#raw() {
<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>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>
<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.w3schools.com/angular/customers.php")
.then(function (response) {$scope.names = response.data.records;});
});
</script>
}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment