[Answer]-Angularjs filter error from services data in the http url

1👍

You should call DegreesService.getDegrees() like this:

DegreesService.getDegrees(degree.DegreeCategoryID, function(response){...})

BTW, $http.get() returns a promise. DO NOT use callbacks if you have promises!

Leave a comment