2012-05-14 79 views
0

如何在Ember JS中以編程方式生成以下示例中的人員列表?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' 是不確定的。

回答

1

嘗試使用v.appendTo(「#容器」)。

相關問題