使用此控制器:
CMS.PeopleController = Em.ArrayController.extend
orderedNames: ( ->
// Some ordering here...
).property "content.names"
......这里没有任何内容:
{{#each controllers.people.orderedNames}}
<p>Hello {{name}}</p>
{{/each}}
我想这是因为某些绑定到content
,但我不知道如何让它工作......有人可以帮助我吗?
答案 0 :(得分:0)
使用@each引用数组中各个项目的属性[作为依赖关键字]:content.@each.name
此外,请确保您的属性为return
值。