Hi I get a JSON response like this:
{
"20150917":
{
"Daily01sec":
{
"TG01152600000": "\/20150917\/Daily01sec\/TG0115260.bin",
"TG01152600600": "\/20150917\/Daily01sec\/TG0115260.bin"
}
},
"201510":
{
"05":
{
"Daily01sec":
{
"TG01152780600": "\/201510\/05\/Daily01sec\/TG01152780600.bin"
}
}
},
"201509":
{
"05":
{
"Daily01sec":
{
"TG01152780600": "\/201510\/05\/Daily01sec\/TG01152780600.bin"
}
}
}
}
I want an array of indexes of and its value to the corresponding data.
I want to have data["20150917"],data["201510"],data["201509"] and the corresponding information for it.
Actually the nested data would be an array of nested data in it,
Can be parsed with angularJS ng-repeat? any idea?