I am using Ember-Data on client side & ruby on server side to fetch data from postgres SQL database,
When I do App.Person.findAll(App.Person) from the server side I am returning an array of ruby hash objects
Now when I do console.log(typeof App.Person.findAll(App.Person)) it prints 'object'
But When I use it in handlebars as,
//Here I set in my ArrayController this.set('content', App.Person.findAll(App.Person));
{{#collection contentBinding="content"}}
Name: {{view.content.name}}
{{/collection}}
It prints all the names as if we are iterating over an array of objects, does ember converts the object to array ?