freemarker 怎么判断对象为空(注意是 为空,?? ?exists if_exists 这些都是判断不为空)
收起
<#if name??> not null <#else> null </#if> 或者 <#if !name??> null </#if>
报告相同问题?