Skip to content

Instantly share code, notes, and snippets.

@bmdayal
Created October 18, 2015 03:47
Show Gist options
  • Save bmdayal/c53cec521ccf1c5fea0b to your computer and use it in GitHub Desktop.
Save bmdayal/c53cec521ccf1c5fea0b to your computer and use it in GitHub Desktop.
//get persons by Id
var onGetByIdCompleted = function(response){
$scope.person = response.data;
console.log(response.data);
};
$scope.searchPerson = function(id){
$http.get('/person/' + id)
.then(onGetByIdCompleted, onError);
console.log(id);
};
//end get person by Id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment