I\'ve got the following json data returned from a service request:
{
\"entries\": [{
\"id\": 2081,
\"name\": \"BM\",
\"niceName\": \"
Your JSON is invalid and should be :
{
"entries": [{
"id": 2081,
"name": "BM",
"niceName": "bodmas"
}, {
"id": 8029,
"name": "Mas",
"niceName": "Masm"
}],
"count": 2
}
Also, make sure you are accessing the document at the right level, use :
$http.get('https://myServiceURL').success(function(data){
$scope.entries = data.entries;
});
Then, it should work. See this JSBin.