One controller returns me a very complex json object:
{
"184": {
"title": "THE STONE ROSES",
"sessions": {
"1443564000000": {
"num": 5
},
"1442959200000": {
"num": 1
},
"1447196400000": {
"num": 1
},
"1444428000000": {
"num": 2
},
"1446332400000": {
"num": 3
}
}
}
}
I have tried to iterate over it on my view like this
<div class="large-6 columns" ng-repeat="item in showItems" st-raw>
<h1>{{item.sessions}}</h1>
</div>
with this code I get part if the object printed on the html response:
{"1443564000000":{"num":1}}
But as you can see, sessions has a very complex attribute (I use the id of the session to store the number of it)
I have seen that some people used to do that with ng-repeat-start, on my case using it gives me severals errors..