我们如何在《共同提交文件》中以以下实例编制人员名单?
{{#each App.peopleController}}
{{#view App.PersonView contentBinding="this"}}
{{content.firstName}} {{content.lastName}}
{{/view}}
{{/each}}
I ve Trial using
App.peopleController.forEach(function(person) {
App.PersonView.create({contentBinding: person}).render();
})
但我拿到错误数据。 缓冲没有界定。