作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将示例数据(从固定装置创建的记录)放入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
?
最佳答案
仅当您的商店是在 Controller 之前创建的时,这才起作用。尝试做MyApp.thisController.set('content', MyApp.store.find(....));
应用加载后,在控制台中。如果可行,则需要在应用初始化后查询商店。
关于sproutcore - 如何将Records推送到SC.ArrayController内容中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11627550/
我是一名优秀的程序员,十分优秀!