Handlebars
模板
<ul class="people_list">
  {{#each people}}
    <li>{{this}}</li>
  {{/each}}
</ul>
准备脚本
// Handlebars.registerHelper('loud', function(string) {
//    return string.toUpperCase()
// });
输入
{
  people: [
    "Yehuda Katz",
    "Alan Johnson",
    "Charles Jolley",
  ],
}
输出
<ul class="people_list">
    <li>Yehuda Katz</li>
    <li>Alan Johnson</li>
    <li>Charles Jolley</li>
</ul>
最后更新: 2019 年 10 月 4 日 下午 6:59:25