我们如何在Ember JS中以编程方式生成以下示例中的人员列表?
{{#each App.peopleController}}
{{#view App.PersonView contentBinding="this"}}
{{content.firstName}} {{content.lastName}}
{{/view}}
{{/each}}
我尝试过使用
App.peopleController.forEach(function(person) {
App.PersonView.create({contentBinding: person}).render();
})
但我收到错误'data.buffer'未定义。
答案 0 :(得分:1)
请尝试v.appendTo(“#container”)。