176142998

            BlogJava :: 首頁 :: 聯(lián)系 :: 聚合  :: 管理
            116 Posts :: 0 Stories :: 45 Comments :: 0 Trackbacks
          今天需要使用個本地化的問題,努力看了點資料,終于解決
          COPE點資料來保存

          用戶定義指令-使用@符合來調(diào)用
          有兩種不同的類型:Macro(宏)和transform(傳遞器),Macro是在模板中使用macro指令定義,而transform是在模板外由程序定義(基本上都是基于Java的),這里通過Macro來介紹自定義指令。
          例一:
          <#macro greet>
          <font size="+2">Hello Joe!</font>
          </#macro>
          使用:<@greet></@greet> 或 <@greet/>
          結(jié)果:<font size="+2">Hello Joe!</font>

          參數(shù)-在macro指令中可以在宏變量之后定義參數(shù)
          例二:
          <#macro greet person>
          <font size="+2">Hello ${person}!</font>
          </#macro>
          使用:<@greet person="Fred"/> and <@greet person="Batman"/>
          結(jié)果: <font size="+2">Hello Fred!</font> and <font size="+2">Hello Batman!</font>

          macro可以有多個參數(shù),參數(shù)的次序是無關(guān)的,在macro指令中只能使用定義的參數(shù),并且必須對所有參數(shù)賦值,可以在定義參數(shù)時指定缺省值:

          <#macro greet person color="black">
          <font size="+2" color="${color}">Hello ${person}!</font>
          </#macro>


          在自定義指令嵌套內(nèi)容:模板片斷中使用<#nested>指令

          <#macro border>
          <table border=4 cellspacing=0 cellpadding=4><tr><td>
          <#nested>
          </tr></td></table>
          </#macro>
          使用:<@border>The bordered text</@border>
          結(jié)果:

          <table border=4 cellspacing=0 cellpadding=4>
          <tr><td>The bordered text
          </tr></td></table>
          <#nested>指令可以被多次調(diào)用:

          <#macro do_thrice>
          <#nested>
          <#nested>
          <#nested>
          </#macro>
          使用:
          <@do_thrice>Anything.</@do_thrice>
          結(jié)果:
          Anything.
          Anything.
          Anything.

          注意:嵌套內(nèi)容是無法訪問到macro中的局部變量的。
          例如:

          <#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>
          結(jié)果:
          test 3/1: ? ? ?
          test 3/2: ? ? ?
          test 3/3: ? ? ?


          下面是一個嵌套使用自定義指令的例子:

          <@border>
          <ul>
          <@do_thrice>
          <li><@greet person="Joe"/>
          </@do_thrice>
          </ul>
          </@border>
          結(jié)果:

          <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中使用循環(huán)變量-作為nested指令的參數(shù)傳遞循環(huán)變量的實際值,而在調(diào)用用戶定義指令時,在<@…>開始標記的參數(shù)后面指定循環(huán)變量的名字:

          <#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
          結(jié)果:
          1. 0.5
          2. 1
          3. 1.5
          4. 2 Last!

          注意:循環(huán)變量和用戶定義指令開始標記指定的數(shù)目可以不同,調(diào)用時少指定循環(huán)變量,則多指定的值不可見,調(diào)用時多指定循環(huán)變量,多余的循環(huán)變量不會被創(chuàng)建。

          模板中的變量,有三種類型:
          1.) plain(全局)變量:可以在模板的任何地方訪問,包括使用include指令插入的模板,使用assign指令創(chuàng)建和替換
          2.) 局部變量:在macro中有效,使用local指令創(chuàng)建和替換
          3.) 循環(huán)變量:只能存在于指令的嵌套內(nèi)容,由指令(如list)自動創(chuàng)建;宏的參數(shù)是局部變量,而不是循環(huán)變量

          用assign指令創(chuàng)建和替換的例子:

          <#assign x = 1> <#-- create variable x -->
          ${x}
          <#assign x = x + 3> <#-- replace variable x -->
          ${x}
          結(jié)果:
          1
          4

          局部變量隱藏(而不是覆蓋)同名的plain變量;循環(huán)變量隱藏同名的局部變量和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>
          結(jié)果:
          1. plain
          2. plain
          3. local
          4. loop
          5. local
          6. plain
          7. loop
          8. loop
          9. plain2

          內(nèi)部循環(huán)變量隱藏同名的外部循環(huán)變量,例如:

          <#list ["loop 1"] as x>
          ${x}
          <#list ["loop 2"] as x>
          ${x}
          <#list ["loop 3"] as x>
          ${x}
          </#list>
          ${x}
          </#list>
          ${x}
          </#list>
          結(jié)果:
          loop 1
          loop 2
          loop 3
          loop 2
          loop 1

          模板中的變量會隱藏(而不是覆蓋)數(shù)據(jù)模型中同名變量,如果需要訪問數(shù)據(jù)模型中的同名變量,使用特殊變量global,下面的例子假設(shè)數(shù)據(jù)模型中的user的值是Big Joe:

          <#assign user = "Joe Hider">
          ${user} <#-- prints: Joe Hider -->
          ${.globals.user} <#-- prints: Big Joe -->
          命名(namespaces)空間-通常情況,只使用一個命名空間,稱為主命名空間(main namespace),但你是不會意識到這些的;為了創(chuàng)建可重用的macro、transforms或其它變量的集合(通常稱庫),必須使用多命名空間,為了防止同名沖突。

          首先創(chuàng)建一個庫(假設(shè)保存在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指令導(dǎo)入庫到模板中,Freemarker會為導(dǎo)入的庫創(chuàng)建新的命名空間,并可以通過import指令中指定的hash(散列)變量訪問庫中的變量:

          <#import "/lib/my_test.ftl" as my>
          <#assign mail="fred@acme.com">
          <@my.copyright date="1999-2002"/>
          ${my.mail}
          ${mail}
          結(jié)果:

          <p>Copyright (C) 1999-2002 Julia Smith. All rights reserved.
          <br>Email: jsmith@acme.com</p>
          jsmith@acme.com
          fred@acme.com
          上面的例子中使用的兩個同名變量并沒有沖突,因為它們位于不同的命名空間

          可以使用assign指令在導(dǎo)入的命名空間中創(chuàng)建或替代變量:

          <#import "/lib/my_test.ftl" as my>
          ${my.mail}
          <#assign mail="jsmith@other.com" in my>
          ${my.mail}
          結(jié)果:
          jsmith@acme.com
          jsmith@other.com

          數(shù)據(jù)模型中的變量任何地方都可見,也包括不同的命名空間,下面修改了剛才創(chuàng)建的庫:

          <#macro copyright date>
          <p>Copyright (C) ${date} ${user}. All rights reserved.</p>
          </#macro>
          <#assign mail = "${user}@acme.com">
          假設(shè)數(shù)據(jù)模型中的user變量的值是Fred:

          <#import "/lib/my_test.ftl" as my>
          <@my.copyright date="1999-2002"/>
          ${my.mail}
          結(jié)果:
          <p>Copyright (C) 1999-2002 Fred. All rights reserved.</p>
          Fred@acme.com

          最后用macro指令解決問題,

          <#macro zch code text="dd">
            <#include "/view/xtgl/xtsjwh/zchsz${ThemeHelpersMap[code]?default(text)}.js"> 
           </#macro>
           <@zch code="jc"/>
          posted on 2008-08-23 18:05 飛飛 閱讀(641) 評論(0)  編輯  收藏

          只有注冊用戶登錄后才能發(fā)表評論。


          網(wǎng)站導(dǎo)航:
           
          主站蜘蛛池模板: 北海市| 大埔县| 成安县| 高阳县| 舒城县| 泾川县| 马公市| 喀什市| 临潭县| 乌苏市| 固原市| 东源县| 包头市| 聂拉木县| 莱西市| 修水县| 德令哈市| 新源县| 勃利县| 灵寿县| 万安县| 辽阳县| 新安县| 临夏县| 定南县| 忻城县| 宜兰市| 屏东县| 兴安盟| 商城县| 新建县| 贵阳市| 镇巴县| 江口县| 独山县| 古丈县| 台安县| 桃园县| 安陆市| 松阳县| 拜城县|