How to avoid null when formatting value
${date?string('yyyy-MM-dd')}
if date is null, freemarker will raise a exception
here is a solution
<#if date??>${date开发者_JAVA百科?string('yyyy-MM-dd')}</#if>
but this code is ugly,is there any shortcut like ${date!} ?
You can write
${(p.bd?string("dd/MM/yyyy"))!}
加载中,请稍侯......
精彩评论