使用方法
編譯模板並根據資料立即渲染出結果
juicer(tpl, data);
只編譯模板暫不渲染,傳回一個可重複使用的編譯後的函式
var compiled_tpl = juicer(tpl);
根據給定的資料對先前編譯好的模板進行渲染
var complied_tpl = juicer(tpl); var html = complied_tpl.render(data);
註冊/註銷自訂函數(物件)
juicer.register(‘function_name', function); juicer.unregister(‘function_name');
預設參數配置
{ cache: true [false]; script: true [false]; error handling: true [false]; detection: true [false]; }
修改預設配置,逐條修改
juicer.set('cache', false);
修改預設配置,批次修改
juicer.set({ 'script': false, 'cache': false })
Juicer 預設會對編譯後的模板進行緩存,從而避免同一模板多次資料渲染時候重複編譯所耗的時間, 如無特殊需要,強烈不建議關閉預設參數中的cache,這麼做將會令Juicer 快取失效從而降低效能.
文法
* ${變數}
- 使用${}輸出變量,其中_ 為對資料來源的參考(${_})。支援使用自訂函數。
${name} ${name|function} ${name|function, arg1, arg2}
var = links: [{href: 'http://juicer.name', alt: 'Juicer'}, {href: 'http://benben.cc', alt: 'Benben'}, {href: 'http://ued.taobao.com', alt: 'Taobao UED'} ]}; var tpl = [ '{@each links as item}', '${item|links_build} <br />', '{@/each}'].join(''); var links = function(data) { return '<a href="' + data.href + '" alt="' + data.alt + '" />'; }; juicer.register('links_build', links); //注册自定义函数 juicer(tpl, json);
* 轉義/避免轉義
- ${變數} 在輸出之前會對其內容轉義,如果你不想輸出結果被轉義,可以使用 $${變數} 來避免這種情況。
var json = { value: '<strong>juicer</strong>' }; var escape_tpl='${value}'; var unescape_tpl='$${value}'; juicer(escape_tpl, json); //输出 '<strong>juicer</strong>' juicer(unescape_tpl, json); //输出 '<strong>juicer</strong>'
- 遍歷數組,${index}目前索引
{@each list as item, index} ${item.prop} ${index} //当前索引 {@/each}
*判斷{@if} ... {@else if} ... {@else} ... {@ /if}
*註解 {# 註解內容}
{# 這裡是註解內容}
*輔助循環 {@each i in range(m, n)}
{@each i in range(5, 10)} ${i}; //输出 5;6;7;8;9; {@/each}
*子模板嵌套 {@include tpl, data}
- 子模板巢狀除了可引入資料中指定的子範本外,也可以透過指定字串`#id`使用寫在`script`標籤中的範本程式碼.
- HTML程式碼:
<script type="text/juicer" id="subTpl"> I'm sub content, ${name} </script>
- Javascript 程式碼:
var tpl = 'Hi, {@include "#subTpl", subData}, End.'; juicer(tpl, { subData: { name: 'juicer' } }); //输出 Hi, I'm sub content, juicer, End. //或者通过数据引入子模板,下述代码也将会有相同的渲染结果: var tpl = 'Hi, {@include subTpl, subData}, End.'; juicer(tpl, { subTpl: "I'm sub content, ${name}", subData: { name: 'juicer' } });
一個完整的例子
HTML 代碼:
<script id="tpl" type="text/template"> <ul> {@each list as it,index} <li>${it.name} (index: ${index})</li> {@/each} {@each blah as it} <li> num: ${it.num} <br /> {@if it.num==3} {@each it.inner as it2} ${it2.time} <br /> {@/each} {@/if} </li> {@/each} </ul> </script>
Javascript 程式碼:
var data = { list: [ {name:' guokai', show: true}, {name:' benben', show: false}, {name:' dierbaby', show: true} ], blah: [ {num: 1}, {num: 2}, {num: 3, inner:[ {'time': '15:00'}, {'time': '16:00'}, {'time': '17:00'}, {'time': '18:00'} ]}, {num: 4} ] }; var tpl = document.getElementById('tpl').innerHTML; var html = juicer(tpl, data);