Unable to loop through nested JSON array ( uppercase properties ) with Handlebars JS with Ember JS
I am learning Ember JS and Handlebars JS so I am very new to this. I am having an issue trying to loop through nested JSON array's. I am unable to loop through the 'Pages" in the JSON below. Here is the JSON: { "Pages": [ { "Id": 1, "Name": "Page 1", "Objects": [ { "Width": 100, "Height": 200, "Type": "Shape" }, { "Width": 150, "Height": 250, "Type": "Image" } ] }, { "Id": 2, "Name": "Page 2", "Objects": [ ] } ], "Settings": { "URL": "http://THEURL", "Location": true, "Navigation": true }, "Id": 1, "Title": "The Title", "Description": "The Description" } This is my handlebars template: <script