我试图让把手dateFormat工作。目前我收到错误com.github.jknack.handlebars.HandlebarsException: /hbs/doc/docheader.hbs:6:12: could not find helper: 'dateFormat'
我致电{{dateFormat doc.documentDate format="yyyy-MM-dd"}}
。
这是我的相关gradle配置:
compile 'pl.allegro.tech.boot:handlebars-spring-boot-starter:0.2.14'
compile 'com.github.jknack:handlebars-helpers:4.0.6',
'com.github.jknack:handlebars-jackson2:4.0.6',
'com.github.jknack:handlebars-humanize:4.0.6',
'com.github.jknack:handlebars-markdown:4.0.6'
据我所知,字符串助手应该包含在把手-jackson2:4.0.6中。
答案 0 :(得分:1)
事实证明,默认情况下不会注册字符串助手。以下代码使其有效:
TemplateLoader loader = new ClassPathTemplateLoader("/hbs", ".hbs");
this.handlebars = new Handlebars(loader);
StringHelpers.register(this.handlebars);