[Fixed]-Json produced by django serializer is not getting rendered in angular ui grid

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);
    }
}

Leave a comment