Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created December 17, 2017 18:46
Show Gist options
  • Save Kamilnaja/a2e2708c7b35254384568ed41d27961d to your computer and use it in GitHub Desktop.
Save Kamilnaja/a2e2708c7b35254384568ed41d27961d to your computer and use it in GitHub Desktop.
angularjs $http example with factory
var app = angular.module('plunker', []);
app.factory('myService', function($http) {
return {
async: function() {
return $http.get('test.json'); //1. this returns promise
}
};
});
app.controller('MainCtrl', function( myService,$scope) {
myService.async().then(function(d) { //2. so you can use .then()
$scope.data = d;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment