格式化值时如何避免 null
${date?string('yyyy-MM-dd')}
如果 date 为 null,freemarker 会引发异常,
这里有一个解决方案
<#if date??>${date?string('yyyy-MM-dd')}</#if>
,但这段代码很难看,是否有像 ${date!}
这样的快捷方式?
${date?string('yyyy-MM-dd')}
if date is null, freemarker will raise a exception
here is a solution
<#if date??>${date?string('yyyy-MM-dd')}</#if>
but this code is ugly,is there any shortcut like ${date!}
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以写
You can write