MyEclipse10 中的兩種FreeMarker外掛的安裝與配置
註釋:<#-- -->
去掉逗號(加?c表示是數字)
${totalZhuWei?c}
- <#if cdo.getStringValue('strNickName')?length > 6 > ${cdo.getStringValue('strNickName')?substring(0,6)}
- <#else> ${cdo.getStringValue('strNickName')}
- </#if>
百分比:
- <td>${(fin.getMoney?if_exists/sumMoney?if_exists*100)?string("0.##")}%</td>
判斷相等:
- <#if annimal = "Dog">
- <#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>
- <#if cdosRun?exists>
- <#list cdosRun as cdo>
- <li>
- <span class="msg">${cdo_index+1}.</span>
- <span class="msg">
- <#if cdo.exists('strHelpName')>
- </#if>
- </span>
- </li>
- </#list>
- </#if>
- <#if showswfCdos?exists>
- <#if showswfCdos?size==0>
- ...
- <#else>
- <#list showswfCdos?if_exists as showswf>
- <#if showswf_index % 2 ==0>
- <#if !showswf_has_next>...</#if>
- <#else>
- </#if>
- </#list>
- </#if>
- <#else>
- ...
- </#if>
使用 list的 item_index屬性可以取遍歷的索引,據此判斷是否輸出就ok了!
- <#list res.userList as user>
- 使用者名稱:${user.name}
- <#if user_index==3><#break></#if>
- </#list>
- <#if cdoUser.getIntegerValue("nSubscriber")==0>
- <#else>
- </#if>
- <#if cdosTree?exists>
- <#list cdosTree as item>
- <option value="<@getStringValue cdo=item col='nTechnologyshareTreeID'/>">
- <@getStringValue cdo=item col="strTitle"/>
- </option>
- </#list>
- </#if>
注意是否加${ }
巨集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變數 ,下面是一個例子:
- <#assign x = "plain">
- 1. ${x} <#-- we see the plain var. here -->
- <@test/>
- 6. ${x} <#-- the value of plain var. was not changed -->
- <#list ["loop"] as x>
- 7. ${x} <#-- now the loop var. hides the plain var. -->
- <#assign x = "plain2"> <#-- replace the plain var, hiding does not mater here -->
- 8. ${x} <#-- it still hides the plain var. -->
- </#list>
- 9. ${x} <#-- the new value of plain var. -->
- <#macro test>
- 2. ${x} <#-- we still see the plain var. here -->
- <#local x = "local">
- 3. ${x} <#-- now the local var. hides it -->
- <#list ["loop"] as x>
- 4. ${x} <#-- now the loop var. hides the local var. -->
- </#list>
- 5. ${x} <#-- now we see the local var. again -->
- </#macro>
- 輸出結果:
- 1. plain
- 2. plain
- 3. local
- 4. loop
- 5. local
- 6. plain
- 7. loop
- 8. loop
- 9. plain2
2.內部迴圈變數隱藏同名的外部迴圈變數 ,如:
- <#list ["loop 1"] as x>
- ${x}
- <#list ["loop 2"] as x>
- ${x}
- <#list ["loop 3"] as x>
- ${x}
- </#list>
- ${x}
- </#list>
- ${x}
- </#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