是否可以在 freemarker 中有 and(&&) 或者我必须使用嵌套的 if?
<#if object?exists >
</#if>
您可以在 free maker 中使用 && 作为逻辑运算符。请参阅逻辑运算
例如
<#if x < 12 && color = "green">
We have less than 12 things, and they are green.
</#if>
<#if !hot> <#-- here hot must be a boolean -->
It's not hot.
</#if>
您可以使用 OR 逻辑运算符
<#if color == "蓝色" || color == "green"> 我们有不到 12 个东西,它们是绿色的。