12

是否可以在 freemarker 中有 and(&&) 或者我必须使用嵌套的 if?

<#if object?exists >


</#if>
4

2 回答 2

34

您可以在 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>  
于 2012-10-17T07:35:01.457 回答
2

您可以使用 OR 逻辑运算符

<#if color == "蓝色" || color == "green"> 我们有不到 12 个东西,它们是绿色的。

于 2018-06-01T10:41:12.317 回答