Hi Steven,

Same code refactored to a factory:
   
   function DataService($http) {
       var sv = {};
       sv.data = {};
       sv.load = load;
       return sv;
       
       function load() {
           return $http
            .get('data.json')
            .then(r => r.data) //just return the data, not the whole 
response
       }
   }
   
   //Hook up all my function into angular
   angular.module('myPlunk',[])
      .factory('DataService', DataService)

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to