Skip to content

Instantly share code, notes, and snippets.

@bmdayal
Created October 18, 2015 03:48
Show Gist options
  • Save bmdayal/dccc053fd518e259b57d to your computer and use it in GitHub Desktop.
Save bmdayal/dccc053fd518e259b57d to your computer and use it in GitHub Desktop.
//get all persone
var onPersonGetCompleted = function(response){
$scope.persons = response.data;
console.log($scope.persons);
}
var refresh = function(){
$http.get('/persons')
.then(onPersonGetCompleted, onError);
console.log('Response received...');
}
refresh();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment