Handlebars
模板
{{#each people}}
   {{.}} lives in {{lookup ../cities @index}}
{{/each}}
准备脚本
// Handlebars.registerHelper('loud', function(string) {
//    return string.toUpperCase()
// });
输入
{
  people: ["Nils", "Yehuda"],
  cities: [
    "Darmstadt",
    "San Francisco",
  ],
}
输出
   Nils lives in Darmstadt
   Yehuda lives in San Francisco
上次更新: 2019 年 11 月 2 日,上午 8:12:45