FreeMarker设计指南(4) (完)
2024-07-21 02:14:10
供稿:网友
本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。freemarker设计指南(4) (完)
4、杂项
(1)用户定义指令
l 宏和变换器变量是两种不同类型的用户定义指令,它们之间的区别是宏是在模板中使用macro指令定义,而变换器是在模板外由程序定义,这里只介绍宏
l 基本用法
ø 宏是和某个变量关联的模板片断,以便在模板中通过用户定义指令使用该变量,下面是一个例子:
<#macro greet>
<font size="+2">hello joe!</font>
</#macro>
ø 作为用户定义指令使用宏变量时,使用@替代ftl标记中的#
<@greet></@greet>
ø 如果没有体内容,也可以使用:
<@greet/>
l 参数
ø 在macro指令中可以在宏变量之后定义参数,如:
<#macro greet person>
<font size="+2">hello ${person}!</font>
</#macro>
ø 可以这样使用这个宏变量:
<@greet person="fred"/> and <@greet person="batman"/>
输出结果是:
<font size="+2">hello fred!</font>
and <font size="+2">hello batman!</font>
ø 宏的参数是ftl表达式,所以下面的代码具有不同的意思:
<@greet person=fred/>
ø 这意味着将fred变量的值传给person参数,该值不仅是字符串,还可以是其它类型,甚至是复杂的表达式
ø 宏可以有多参数,下面是一个例子:
<#macro greet person color>
<font size="+2" color="${color}">hello ${person}!</font>
</#macro>
ø 可以这样使用该宏变量:
<@greet person="fred" color="black"/>
ø 其中参数的次序是无关的,因此下面是等价的:
<@greet color="black" person="fred"/>
ø 只能使用在macro指令中定义的参数,并且对所有参数赋值,所以下面的代码是错误的:
<@greet person="fred" color="black" background="green"/>
<@greet person="fred"/>
ø 可以在定义参数时指定缺省值,如:
<#macro greet person color="black">
<font size="+2" color="${color}">hello ${person}!</font>
</#macro>
ø 这样<@greet person="fred"/>就正确了
ø 宏的参数是局部变量,只能在宏定义中有效
l 嵌套内容
ø 用户定义指令可以有嵌套内容,使用<#nested>指令执行指令开始和结束标记之间的模板片断
ø 例子:
<#macro border>
<table border=4 cellspacing=0 cellpadding=4><tr><td>
<#nested>
</tr></td></table>
</#macro>
这样使用该宏变量:
<@border>the bordered text</@border>
输出结果:
<table border=4 cellspacing=0 cellpadding=4><tr><td>
the bordered text
</tr></td></table>
ø <#nested>指令可以被多次调用,例如:
<#macro do_thrice>
<#nested>
<#nested>
<#nested>
</#macro>
<@do_thrice>
anything.
</@do_thrice>
输出结果:
anything.
anything.
anything.
ø 嵌套内容可以是有效的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 size="+2">hello joe!</font>
<li><font size="+2">hello joe!</font>
<li><font size="+2">hello joe!</font>
</ul>
</tr></td></table>
ø 宏定义中的局部变量对嵌套内容是不可见的,例如:
<#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: ? ? ?
ø
l 在宏定义中使用循环变量
ø 用户定义指令可以有循环变量,通常用于重复嵌套内容,基本用法是:作为nested指令的参数传递循环变量的实际值,而在调用用户定义指令时,在<@…>开始标记的参数后面指定循环变量的名字
ø 例子:
<#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>
输出结果:
1. 0.5
2. 1
3. 1.5
4. 2 last!
ø 指定的循环变量的数目和用户定义指令开始标记指定的不同不会有问题
n 调用时少指定循环变量,则多指定的值不可见
n 调用时多指定循环变量,多余的循环变量不会被创建
(2)在模板中定义变量
l 在模板中定义的变量有三种类型:
ø plain变量:可以在模板的任何地方访问,包括使用include指令插入的模板,使用assign指令创建和替换
ø 局部变量:在宏定义体中有效,使用local指令创建和替换
ø 循环变量:只能存在于指令的嵌套内容,由指令(如list)自动创建;宏的参数是局部变量,而不是循环变量
l 局部变量隐藏(而不是覆盖)同名的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
l 内部循环变量隐藏同名的外部循环变量,如:
<#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
l 模板中的变量会隐藏(而不是覆盖)数据模型中同名变量,如果需要访问数据模型中的同名变量,使用特殊变量global,下面的例子假设数据模型中的user的值是big joe:
<#assign user = "joe hider">
${user} <#-- prints: joe hider -->
${.globals.user} <#-- prints: big joe -->
(3)名字空间
l 通常情况,只使用一个名字空间,称为主名字空间
l 为了创建可重用的宏、变换器或其它变量的集合(通常称库),必须使用多名字空间,其目的是防止同名冲突
l 创建库
ø 下面是一个创建库的例子(假设保存在lib/my_test.ftl中):
<#macro copyright date>
<p>copyright (c) ${date} julia smith. all rights reserved.
<br>email: ${mail}</p>
</#macro>
<#assign mail = "[email protected]">
ø 使用import指令导入库到模板中,freemarker会为导入的库创建新的名字空间,并可以通过import指令中指定的散列变量访问库中的变量:
<#import "/lib/my_test.ftl" as my>
<#assign mail="[email protected]">
<@my.copyright date="1999-2002"/>
${my.mail}
${mail}
输出结果:
<p>copyright (c) 1999-2002 julia smith. all rights reserved.
<br>email: [email protected]</p>
[email protected]
[email protected]
可以看到例子中使用的两个同名变量并没有冲突,因为它们位于不同的名字空间
l 可以使用assign指令在导入的名字空间中创建或替代变量,下面是一个例子:
<#import "/lib/my_test.ftl" as my>
${my.mail}
<#assign mail="[email protected]" in my>
${my.mail}
l 输出结果:
[email protected]
[email protected]
l 数据模型中的变量任何地方都可见,也包括不同的名字空间,下面是修改的库:
<#macro copyright date>
<p>copyright (c) ${date} ${user}. all rights reserved.</p>
</#macro>
<#assign mail = "${user}@acme.com">
l 假设数据模型中的user变量的值是fred,则下面的代码:
<#import "/lib/my_test.ftl" as my>
<@my.copyright date="1999-2002"/>
${my.mail}
l 输出结果:
<p>copyright (c) 1999-2002 fred. all rights reserved.</p>
[email protected]
[点击此处收藏本文] 发表于 2004年11月17日 10:14 pm -->flylyke 发表于2004-11-19 12:48 am 老兄,翻译的好yny 发表于2004-12-22 12:15 pm 老兄,翻译的好 steven 发表于2005-02-24 8:40 pm 这几天我也在看freemaker,我想请问一个问题, freemarker.template 下的 addmacro() 和addimport() 两个方法是干什么的,怎么用,我看了半天,谢谢了