<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    隨筆-18  評論-8  文章-0  trackbacks-0

    用戶定義指令-使用@符合來調(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ù)的次序是無關的,在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 = "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 = 1>  <#-- create variable x -->
    ${x}
    <#assign = x + 3> <#-- replace variable x -->
    ${x}  

    結(jié)果:
    1
    4

    局部變量隱藏(而不是覆蓋)同名的plain變量;循環(huán)變量隱藏同名的局部變量和plain變量,下面是一個例子:

    <#assign = "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 = "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 = "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ù)據(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)建一個庫(假設保存在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指令導入庫到模板中,F(xiàn)reemarker會為導入的庫創(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指令在導入的命名空間中創(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ù)據(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 


    參考:  
                
    FreeMarker  in sourceforge.net

    posted on 2005-03-11 11:08 阿姆斯壯 閱讀(2359) 評論(0)  編輯  收藏 所屬分類: 工具箱

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


    網(wǎng)站導航:
     
    主站蜘蛛池模板: 成人免费一区二区三区| 亚洲一区二区三区偷拍女厕| 日本免费大黄在线观看| 爱情岛亚洲论坛在线观看| 亚洲电影免费观看| 国产亚洲精品精华液| 免费人成网站7777视频| 好男人视频在线观看免费看片| 一级毛片在线免费看| a毛片在线免费观看| 窝窝影视午夜看片免费| 亚洲av色香蕉一区二区三区| 亚洲成aⅴ人片在线观| 亚洲韩国在线一卡二卡| 亚洲国产精品SSS在线观看AV| 亚洲国产成人久久精品99| 日韩免费一区二区三区| 最近2019中文字幕免费看最新| 18禁免费无码无遮挡不卡网站| 久久久久久久久久国产精品免费 | 亚洲成熟丰满熟妇高潮XXXXX| 亚洲综合综合在线| 久久久久亚洲AV无码网站| 亚洲高清在线播放| 久久久影院亚洲精品| 亚洲国产a∨无码中文777| 久久亚洲国产中v天仙www| 亚洲精品卡2卡3卡4卡5卡区| 中文亚洲成a人片在线观看| 中文字幕中韩乱码亚洲大片| 国产亚洲精午夜久久久久久| 久久精品国产亚洲7777| 国产亚洲精品无码专区| 亚洲人成色7777在线观看| 亚洲国产另类久久久精品| 亚洲AV无码久久精品狠狠爱浪潮| 国产AV无码专区亚洲Av| 亚洲尹人九九大色香蕉网站| 亚洲精品美女视频| 亚洲高清有码中文字| 日韩国产欧美亚洲v片|