FreeMarker模板 if, else, elseif 指令 :
if, else, elseif
语法
<#if condition>
...
<#elseif condition2>
...
<#elseif condition3>
...
...
<#else>
...
</#if>
用例
<#if x = 1>
x is 1
</#if><#if x = 1>
x is 1
<#else>
x is not 1
</#if>
posted on
2014-09-12 16:01龙飞腾
阅读(4419)
评论(0)
编辑收藏举报