freeMarker語法

meetrice發表於2016-02-03

MyEclipse10 中的兩種FreeMarker外掛的安裝與配置

Freemarker學習筆記(全)

freemarker比較大小1

freemarker比較大小2

Freemarker操作字串

Freemarker操作字串2

 

註釋:<#--   --> 

 

去掉逗號(加?c表示是數字)

${totalZhuWei?c}

 

Html程式碼  
  1. <#if cdo.getStringValue('strNickName')?length &gt; 6 >                                                                       ${cdo.getStringValue('strNickName')?substring(0,6)}  
  2. <#else>                                               ${cdo.getStringValue('strNickName')}  
  3. </#if>   

 

百分比:

 

Java程式碼  
  1. <td>${(fin.getMoney?if_exists/sumMoney?if_exists*100)?string("0.##")}%</td>  

 

判斷相等:

Java程式碼  
  1. <#if annimal = "Dog">  

 

Java程式碼  
  1. <#if hasOnReq = true>  

 

 

FreeMarker基礎:

1.輸出 ${book.name}
空值判斷:${book.name?if_exists },
${book.name?default(‘xxx’)} //預設值xxx
${ book.name!"xxx"}//預設值xxx
日期格式:${book.date?string('yyyy-MM-dd')}
數字格式:${book?string.number}     //20
${book?string.currency}          //$20.00
${book?string.percent}          //20%

插入布林值:
<#assign foo=ture />
${foo?string("yes","no")}    //yes

 

2.邏輯判斷 
a:
<#if condition>    ...
<#elseif condition2>    ...
<#elseif condition3>    ......
<#else>    ...    
</#if>
其中空值判斷可以寫成<#if book.name?? > 

b:
<#switch value>
    <#case refValue1> ...
        <#break>
    <#case refValue2> ...
        <#break>
    <#case refValueN>...
        <#break>
    <#default>        
</#switch>

 

3.迴圈讀取 
<#list sequence as item>
    ...
</#list>
空值判斷<#if bookList?size = 0></#list>

 

Xml程式碼  
  1. <#if cdosRun?exists>   
  2.      <#list cdosRun as cdo>  
  3.         <li>  
  4.             <span class="msg">${cdo_index+1}.</span>  
  5.             <span class="msg">  
  6.                 <#if cdo.exists('strHelpName')>  
  7.                       
  8.                 </#if>  
  9.             </span>             
  10.         </li>  
  11.     </#list>  
  12. </#if>  

 

Html程式碼  
  1. <#if showswfCdos?exists>  
  2.     <#if showswfCdos?size==0>  
  3.         ...  
  4.     <#else>   
  5.         <#list showswfCdos?if_exists as showswf>  
  6.              <#if showswf_index % 2 ==0>  
  7.                                                   
  8.                     <#if !showswf_has_next>...</#if>  
  9.              <#else>  
  10.                       
  11.              </#if>  
  12.         </#list>                
  13.     </#if>  
  14. <#else>  
  15.     ...        
  16. </#if>  

 使用 list的 item_index屬性可以取遍歷的索引,據此判斷是否輸出就ok了! 

Html程式碼  
  1. <#list res.userList as user>   
  2.       使用者名稱:${user.name}   
  3.      <#if user_index==3><#break></#if>   
  4. </#list>  

 

Js程式碼  
  1. <#if cdoUser.getIntegerValue("nSubscriber")==0>  
  2.               
  3.     <#else>  
  4.           
  5.     </#if>  
  6.       
  7.       
  8.     <#if cdosTree?exists>  
  9.         <#list cdosTree as item>  
  10.             <option value="<@getStringValue cdo=item col='nTechnologyshareTreeID'/>">  
  11.                 <@getStringValue cdo=item col="strTitle"/>  
  12.             </option>  
  13.         </#list>  
  14.     </#if>  
  15.       

注意是否加${ } 

 

Freemarker中list的用法

freemarker list巢狀 

FreeMaker中遍歷List的用法

 

 

巨集Macro 
巨集是在模板中使用macro指令定義
1. 基本用法 
巨集是和某個變數關聯的模板片斷,以便在模板中通過使用者定義指令使用該變數 ,下面是一個例子:
<#macro greet>
    <font>Hello Joe!</font>
</#macro>
呼叫巨集時,與使用FreeMarker的其他指令類似,
只是使用@替代FTL標記中的#。
<@greet></@greet>

 

2.在macro指令中可以在巨集變數之後定義引數 ,如:
<#macro greet person>
    <font>Hello ${person}!</font>
</#macro>
可以這樣使用這個巨集變數:
   <@greet person="Fred"/>

但是下面的程式碼具有不同的意思:
   <@greet person=Fred/>
這意味著將Fred變數的值傳給person引數,該值不僅是字串,還可以是其它型別,甚至是複雜的表示式。

 

3.巨集可以有多引數 
<#macro greet person color>
    <font color="${color}">Hello ${person}!</font>
</#macro>
可以這樣使用該巨集變數,其中引數的次序是無關的:
<@greet person="Fred" color="black"/>

可以在定義引數時指定預設值,否則,在呼叫巨集的時候,必須對所有引數賦值:
<#macro greet person color="black">
    <font color="${color}">Hello ${person}!</font>
</#macro>
注意:巨集的引數是區域性變數,只能在巨集定義中有效。

 

4.在巨集裡巢狀內容 
<#nested>指令會執行巨集呼叫指令開始和結束標記之間的模板片斷:

<#macro border>
<table border=4 cellspacing=0 cellpadding=4>
<tr><td>
    <#nested>
    </td>
</tr>
</table>
</#macro>
執行巨集呼叫:
<@border>The bordered text</@border>
輸出結果:
<table border=4 cellspacing=0 cellpadding=4>
<tr><td>
       The bordered text
</td></tr>
</table>

<#nested>指令可以被多次呼叫,每次都會執行相同的內容。
<#macro do_thrice>
    <#nested>
    <#nested>
    <#nested>
</#macro>

<@do_thrice>
Anything.
</@do_thrice>

FMPP 輸出結果:
Anything.
Anything.
Anything.

 

5.巢狀內容可以是有效的FTL ,下面是一個有些複雜的例子,我們將上面三個巨集組合起來:
<@border>
<ul>
<@do_thrice>
    <li><@greet person="Joe"/>
</@do_thrice>
</ul>
</@border>

輸出結果:
<table border=4 cellspacing=0 cellpadding=4><tr><td>
<ul>
    <li><font>Hello Joe!</font>
    <li><font>Hello Joe!</font>
    <li><font>Hello Joe!</font>
</ul>
</td></tr></table>

6.巨集定義中的區域性變數對巢狀內容(<#nested>的內容 )是不可見的 ,例如:
<#macro repeat count>
<#local y = "test">
<#list 1..count as x>
    ${y} ${count}/${x}: <#nested>
</#list>
</#macro>
<@repeat count=3>${y?default("?")} ${x?default("?")} ${count?default("?")}</@repeat>
輸出結果:
test 3/1: ? ? ?
test 3/2: ? ? ?
test 3/3: ? ? ?

 

7.在巨集定義中使用迴圈變數 
nestted指令也可以有迴圈變數,呼叫巨集的時候在巨集指令的引數後面依次列出迴圈變數的名字,格式如下:
<@ macro_name paramter list; loop variable list[,]>
例如:
<#macro repeat count>
<#list 1..count as x>
    <#nested x, x/2, x==count>
</#list>
</#macro>

<@repeat count=4 ; c, halfc, last>
    ${c}. ${halfc}<#if last> Last!</#if>
</@repeat>
這裡count是巨集的引數,c, halfc,last則為迴圈變數,

輸出結果:
1. 0.5
2. 1
3. 1.5
4. 2 Last!

迴圈變數和巨集標記指定的不同不會有問題,如果呼叫時少指定了迴圈變數,那麼多餘的值不可見。呼叫時多指定了迴圈變數,多餘的迴圈變數不會被建立:
<@repeat count=4 ; c, halfc, last>
${c}. ${halfc}<#if last> Last!</#if>
</@repeat>

<@repeat count=4 ; c, halfc>
${c}. ${halfc}
</@repeat>

<@repeat count=4>
Just repeat it... 
</@repeat>

 

 

在模板中定義變數 

在模板中定義的變數有三種型別:
plain變數 :可以在模板的任何地方訪問,包括使用include指令插入的模板,使用assign指令建立和替換。
區域性變數 : 在巨集定義體中有效,使用local指令建立和替換。
迴圈變數 : 只能存在於指令的巢狀內容,由指令(如list)自動建立;巨集的引數是區域性變數,而不是迴圈變數


1.區域性變數隱藏(而不是覆蓋 )同名的plain變數 ;迴圈變數隱藏同名的區域性變數和plain變數 ,下面是一個例子:

Java程式碼  
  1. <#assign x = "plain">  
  2. 1. ${x} <#-- we see the plain var. here -->  
  3. <@test/>  
  4. 6. ${x} <#-- the value of plain var. was not changed -->  
  5. <#list ["loop"] as x>  
  6. 7. ${x} <#-- now the loop var. hides the plain var. -->  
  7. <#assign x = "plain2"> <#-- replace the plain var, hiding does not mater here -->  
  8. 8. ${x} <#-- it still hides the plain var. -->  
  9. </#list>  
  10. 9. ${x} <#-- the new value of plain var. -->  
  11. <#macro test>  
  12. 2. ${x} <#-- we still see the plain var. here -->  
  13. <#local x = "local">  
  14. 3. ${x} <#-- now the local var. hides it -->  
  15. <#list ["loop"] as x>  
  16.    4. ${x} <#-- now the loop var. hides the local var. -->  
  17. </#list>  
  18. 5. ${x} <#-- now we see the local var. again -->  
  19. </#macro>  
  20. 輸出結果:  
  21. 1. plain  
  22. 2. plain  
  23. 3. local  
  24. 4. loop  
  25. 5. local  
  26. 6. plain  
  27. 7. loop  
  28. 8. loop  
  29. 9. plain2  

 

2.內部迴圈變數隱藏同名的外部迴圈變數 ,如:

Java程式碼  
  1. <#list ["loop 1"] as x>  
  2. ${x}  
  3. <#list ["loop 2"] as x>  
  4.     ${x}  
  5.     <#list ["loop 3"] as x>  
  6.       ${x}  
  7.     </#list>  
  8.     ${x}  
  9. </#list>  
  10. ${x}  
  11. </#list>  

 輸出結果:
loop 1
    loop 2
      loop 3
    loop 2
loop 1

3.模板中的變數會隱藏(而不是覆蓋)資料模型中同名變數 ,如果需要訪問資料模型中的同名變數,使用特殊變數global ,下面的例子假設資料模型中的user的值是Big Joe:
<#assign user = "Joe Hider">
${user}          <#-- prints: Joe Hider -->
${.globals.user} <#-- prints: Big Joe -->

 

 

名字空間 
通常情況,只使用一個名字空間,稱為主名字空間,但為了建立可重用的巨集、變換器或其它變數的集合(通常稱庫),必須使用多名字空間,其目的是防止同名衝突

1.下面是一個建立庫的例子(假設儲存在lib/my_test.ftl中):
<#macro copyright date>
<p>Copyright (C) ${date} Julia Smith. All rights reserved.
<br>Email: ${mail}</p>
</#macro> 
<#assign mail = "jsmith@acme.com">

使用import指令匯入庫到模板中,Freemarker會為匯入的庫建立新的名字空間,並可以通過import指令中指定的雜湊變數訪問庫中的變數 :
<#import "/lib/my_test.ftl" as my>
<#assign mail="fred@acme.com">
<@my.copyright date="1999-2002"/>
${my.mail}
${mail}

輸出結果:
<p>Copyright (C) 1999-2002 Julia Smith. All rights reserved.
<br>Email: jsmith@acme.com</p>
jsmith@acme.com
fred@acme.com
可以看到例子中使用的兩個同名變數並沒有衝突,因為它們位於不同的名字空間。

2.還可以使用assign指令在匯入的名字空間中建立或替代變數 :
<#import "/lib/my_test.ftl" as my>
${my.mail}
<#assign mail="jsmith@other.com" in my>
${my.mail}

輸出結果:
jsmith@acme.com
jsmith@other.com

3.資料模型中的變數任何地方都可見,也包括不同的名字空間 ,下面是修改的庫:
<#macro copyright date>
<p>Copyright (C) ${date} ${user}. All rights reserved.</p>
</#macro>
<#assign mail = "${user}@acme.com">
假設資料模型中的user變數的值是Fred,則下面的程式碼:
<#import "/lib/my_test.ftl" as my>
<@my.copyright date="1999-2002"/>
${my.mail}
輸出結果:
<p>Copyright (C) 1999-2002 Fred. All rights reserved.</p>Fred@acme.com