Skip to content

Instantly share code, notes, and snippets.

@jshcrowthe
Last active January 3, 2016 17:29
Show Gist options
  • Save jshcrowthe/8495745 to your computer and use it in GitHub Desktop.
Save jshcrowthe/8495745 to your computer and use it in GitHub Desktop.
AngularJS $http Template
$http({
url: "",
method: "",
}).success(function(data, status, headers, config) {
$scope.data = data;
}).error(function(data, status, headers, config) {
$scope.status = status;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment