Created
December 17, 2017 18:46
-
-
Save Kamilnaja/a2e2708c7b35254384568ed41d27961d to your computer and use it in GitHub Desktop.
angularjs $http example with factory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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