如何使用每个助手在 ember.js handlebars 模板中呈现一个简单列表?
How to render a simple list in ember.js handlebars template with each helper?
我在 {{#each}}
上收到弃用警告,说我应该切换到 {{#each items in items}}
,但我无法让它工作。
http://jsbin.com/qeqeyazoci/2/edit?html,js,output
http://guides.emberjs.com/v1.10.0/templates/displaying-a-list-of-items/
您需要遍历 content
而不是 items
{{#each item in content}}
我在 {{#each}}
上收到弃用警告,说我应该切换到 {{#each items in items}}
,但我无法让它工作。
http://jsbin.com/qeqeyazoci/2/edit?html,js,output
http://guides.emberjs.com/v1.10.0/templates/displaying-a-list-of-items/
您需要遍历 content
而不是 items
{{#each item in content}}