我想讓我的示例數據(從燈具創建的記錄)放入我的SC.ListView
。我知道記錄是正確構建的,因爲我能夠通過primaryKey
找到特定數據。如何將我的記錄推入SC.ArrayController內容?
的SC.ListView
通過contentBinding: 'MyApp.thisController.arrangedObjects'
從這個SC.ArrayController
拉動其內容:
MyApp.thisController = SC.ArrayController.create(SC.SelectionSupport, {
allowsMultipleSelection: NO,
content: MyApp.store.find(MyApp.MyRecordType)
});
給init商店,我使用的功能從官方指南:
store: SC.Store.create().from(SC.Record.fixtures)
如何設置我的控制器中的內容屬性是否導入SC.RecordArray
?
據我所知,實際上應該工作。當你做'MyApp.thisController.get('content')'返回什麼? – 2012-07-25 21:01:08
正如我所說,由於我能夠訪問特定數據,所以商店生成正確 – DonJuwe 2012-08-06 10:27:18