1
Answer

how to pass the Scope variable in Angular factory method

mari muthu

mari muthu

8y
240
1
angular.forEach(values, function($http, $scope)
{     
      this is my loop
})
module.factory('userService',
 function(){ 	
 	here i want to pass that looping Scope variable
 });
Answers (1)