Handlebars
模板
{{foo}}
{{foo true}}
{{foo 2 true}}
{{#foo true}}{{/foo}}
{{#foo}}{{/foo}}
准备脚本
Handlebars.registerHelper('helperMissing', function( /* dynamic arguments */) {
  var options = arguments[arguments.length-1];
  var args = Array.prototype.slice.call(arguments, 0,arguments.length-1)
  return new Handlebars.SafeString("Missing: "+options.name+"("+args+")")
})
输入
null
输出
Missing: foo()
Missing: foo(true)
Missing: foo(2,true)
Missing: foo(true)
上次更新: 2019 年 11 月 2 日,下午 8:47:47