Handlebars
模板
{{#each people as |person|}}
  {{#> childEntry}}
    {{person.firstname}}
  {{/childEntry}}
{{/each}}
准备脚本
// Handlebars.registerHelper('loud', function(string) {
//    return string.toUpperCase()
// });
输入
{
  people: [
    { firstname: "Nils" },
    { firstname: "Yehuda" },
    { firstname: "Carl" },
  ],
}
输出
    Nils
    Yehuda
    Carl
最后更新: 2020 年 2 月 25 日 下午 4:23:24