I am working with jSON, an API and AngularJS. I want to get the following data, but I will not know in advanced what the keywords or the dates will be
{
"landscape gardening middlesex": {
"2015-02-12": {
"position": null,
"change": "n/a",
"class": "gray"
},
"2015-03-17": {
"position": "0",
"change": "n/a",
"class": "gray"
}
},
"landscape gardening staines": {
"2015-02-12": {
"position": null,
"change": "n/a",
"class": "gray"
},
"2015-03-17": {
"position": "94",
"change": "n/a",
"class": "green"
}
},
"landscape gardening surrey": {
"2015-02-12": {
"position": null,
"change": "n/a",
"class": "green"
},
"2015-03-17": {
"position": "0",
"change": "n/a",
"class": "gray"
}
}
} How can i retrieve this using AngularJS ng-repeat Thanks.