我正在尝试将我的示例数据(从夹具创建的记录)放入我的SC.ListView
. 我知道这些记录是正确构建的,因为我可以通过primaryKey
.
正在通过以下方式提取SC.ListView
其内容:contentBinding: 'MyApp.thisController.arrangedObjects'
SC.ArrayController
MyApp.thisController = SC.ArrayController.create(SC.SelectionSupport, {
allowsMultipleSelection: NO,
content: MyApp.store.find(MyApp.MyRecordType)
});
要初始化商店,我使用官方指南中的功能:
store: SC.Store.create().from(SC.Record.fixtures)
如何在控制器中设置我的内容属性以导入SC.RecordArray
?