Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Kamilnaja/c26d78351127cad097c5234ba00426bb to your computer and use it in GitHub Desktop.
Save Kamilnaja/c26d78351127cad097c5234ba00426bb to your computer and use it in GitHub Desktop.
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$http.get('users.json')
.then(function(response) {
$scope.myUsers = response.data;
console.log($scope.myUsers.people[1].name);
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment