Skip to content Skip to sidebar Skip to footer

$digest Already In Progress

I'm fetching the data using $http.get() and passing it as argument to a custom filter to get the filterd data. But it is giving an error: $digest already in progress. Does anyone

Solution 1:

I think you should place

var filteritems= $filter('applySfotwareFilter')($scope.sitesInfo);

inside your success function;

What happens is the filtering starts before your data is ready.

Post a Comment for "$digest Already In Progress"