假设我在 ember Controller 中有一个这样的数组,
selectedUsers: ["Popeye", "Sulley", "Gru"];
现在,我如何使用 Handlebars 在无序列表中呈现每个用户?我可以使用
{{#Each}}
助手吗? 最佳答案
是的,您应该使用 each
循环:
<ul>
{{#each selectedUsers}}
<li>{{ this }}</li>
{{/each}}
</ul>
从 the docs :
关于handlebars.js - 渲染带有 Handlebars 的字符串数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20773464/