我在客戶端&紅寶石使用在服務器側灰燼-數據來從postgres的SQL數據庫中的數據,自動對象陣列轉換
當我App.Person.findAll(App.Person)
從服務器端我返回紅寶石散列的陣列對象
現在,當我做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}}
它打印所有的名字,就好像我們正在迭代一個對象數組一樣,是否將對象轉換爲數組?
那個打印物體有什麼? – thecodejack
打印沒有任何問題,正如預期的那樣,疑問是當內容類型爲Object時,如何迭代內容。 –