StringTemplate

StringTemplate(簡稱ST)是一個基於Java的模板引擎庫(目前同時支持C#、Python、Ruby),可以用於生成原始碼、Web頁面、電子郵件等各種有格式的文本。StringTemplate不同於其他類似的模板引擎的顯著特點是嚴格執行模型視圖分離,尤其擅長多目標代碼生成、多種網站風格管理以及網站多語言版本生成等。StringTemplate已經套用到許多大型網站中,例如jGuru.com。

特點

使用StringTemplate可以嚴格保證業務邏輯和表現邏輯相分離,不會互相干擾,提高網站的開發和維護的效率。模型和視圖分離所帶來的優點包括:模板檔案可以在相似的網站開發中重用,清晰的模板檔案可以作為網站開發的說明文檔,模板檔案可以單獨修改。

基本語法

StringTemplate支持兩種分隔設定<...>和$...$

語法 描述 例子
< attribute> 顯示變數值或空串 $user$ <user>
< attribute. property> 顯示集合或對象的屬性值或空串 $user.name$ <user.name>
< attribute.( expr)> 與< attribute. property> 意義相同,但是如果expr是保留字,則必須使用< attribute.( expr)> $user.(name_label)$ <user.(name_label)>
< multi-valued-attribute> 集合中多個屬性連線在一起的值 $users$ <users>
< multi-valued-attribute; separator= expr> 多個屬性連線在一起,屬性之間使用expr分隔 $users; separator=", "$ <users; separator=", ">
< template( argument-list)> 調用其它模板,可以向該模板傳遞參數 $bold()$ <bold(item=title)>
< attribute: template( argument-list)> 模板套用 $name:bold()$ <name:checkoutReceipt(items=skus, ship=shipOpt)>
< attribute:{ argument-name_ | _anonymous-template}> 套用匿名模板 $users:{s|<li>$s$</li>}; separator="\n"$ <users:{s|<li>$s$</li>}; separator="\n">
<if(! attribute)> subtemplate<endif> 條件語句 $if(users)$ $users:{u|$u$}$ $endif$ <if(users)> <users:{u|<u>}> <endif>
\$ or \< 語法分隔設定的轉義表達 \$ \<
<\ >, <\n>, <\t>, <\r> 轉義字元 $\n$ <\n>
<! comment !>, $! comment !$ 注釋符號 $! this is a comment !$ <! this is a comment !>

相關詞條

相關搜尋

熱門詞條

聯絡我們