When working with a specific controller, I receive a JSON object that is quite intricate:
{
"184": {
"title": "THE STONE ROSES",
"sessions": {
"1443564000000": {
"num": 5
},
"1442959200000": {
"num": 1
},
"1447196400000": {
"num": 1
},
"1444428000000": {
"num": 2
},
"1446332400000": {
"num": 3
}
}
}
}
I attempted to iterate over this object in my view using the following approach:
<div class="large-6 columns" ng-repeat="item in showItems" st-raw>
<h1>{{item.sessions}}</h1>
</div>
However, when I implement this code, only a portion of the object is displayed on the HTML response:
{"1443564000000":{"num":1}}
The 'sessions' attribute within the object is quite complex (using session IDs to store numbers).
Some individuals have utilized ng-repeat-start for handling similar scenarios, but implementing it in my case has resulted in several errors.