Given a controller with a $scope property that is an object with other properties rather than an array like below, how should I filter the ng-repeat set?
ng-repeat
Rather than using a filter you can also simply :
$http.get('api/users').success(function(data){ angular.forEach(data, function(value, key){ users.push(value); }); $scope.users = users; });
And in the template
{{ user.name }}