我在客户端使用 Ember-Data 并在服务器端使用 ruby 从 postgres SQL 数据库中获取数据,
当我App.Person.findAll(App.Person)
从服务器端执行时,我将返回一组 ruby 哈希对象
现在当我这样做console.log(typeof App.Person.findAll(App.Person))
时'object'
但是当我在车把中使用它时,
//Here I set in my ArrayController this.set('content', App.Person.findAll(App.Person));
{{#collection contentBinding="content"}}
Name: {{view.content.name}}
{{/collection}}
它打印所有名称,就好像我们正在迭代一个对象数组一样,ember 是否将对象转换为数组?