Handlebars
模板
{{#with city}}
{{city.name}} (not shown because there is no city)
{{else}}
No city found
{{/with}}
准备脚本
// Handlebars.registerHelper('loud', function(string) {
//    return string.toUpperCase()
// });
输入
{
  person: {
    firstname: "Yehuda",
    lastname: "Katz",
  },
}
输出
No city found
上次更新: 2019 年 11 月 2 日,上午 8:12:45