1👍
Please show your Angular code, I think in time when you get data you must iterate trough that data and put it in variable, like in example below
$scope.posts = [];
$http.get('/api/posts').then(function (result) {
angular.forEach result.data, function (item) {
$scope.posts.push( item);
}
}
Source:stackexchange.com