本文主要是介绍javascript轻量级模板引擎juicer使用指南,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Juicer 是一个高效、轻量的前端 (Javascript) 模板引擎,使用 Juicer 可以是你的代码实现数据和视图模型的分离(MVC)。
使用方法
编译模板并根据数据立即渲染出结果
仅编译模板暂不渲染,返回一个可重用的编译后的函数
?
1 | var compiled_tpl = juicer(tpl); |
根据给定的数据对之前编译好的模板进行渲染
?
1 2 | var complied_tpl = juicer(tpl); var html = complied_tpl.render(data); |
注册/注销自定义函数(对象)
?
1 2 | juicer.register(‘function_name ', function); juicer.unregister(‘function_name' ); |
默认参数配置
?
1 2 3 4 5 6 | { cache: true [ false ]; script: true [ false ]; error handling: true [ false ]; detection: true [ false ]; } |
修改默认配置,逐条修改
?
1 | juicer.set( 'cache' , false ); |
修改默认配置,批量修改
?
1 2 3 4 | juicer.set({ 'script' : false , 'cache' : false }) |
Juicer 默认会对编译后的模板进行缓存,从而避免同一模板多次数据渲染时候重复编译所耗的时间, 如无特殊需要,强烈不建议关闭默认参数中的 cache,这么做将会令 Juicer 缓存失效从而降低性能.
语法
* ${变量}
- 使用${}输出变量,其中_ 为对数据源的引用(${_})。支持使用自定义函数。
?
1 2 3 | ${name} ${name| function } ${name| function , arg1, arg2} |
?
1 2 3 4 5 6 7 8 9 10 11 12 | 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); |
* 转义/避免转义
- ${变量} 在输出之前会对其内容进行转义,如果你不想输出结果被转义,可以使用 $${变量} 来避免这种情况。
?
1 2 3 4 5 6 7 | var json = { value: '<strong>juicer</strong>' }; var escape_tpl= '${value}' ; var unescape_tpl= '$${value}' ; juicer(escape_tpl, json); juicer(unescape_tpl, json); |
*循环遍历 {@each} ... {@/each}
- 遍历数组,${index}当前索引
?
1 2 3 4 | {@each list as item, index} ${item.prop} ${index} {@/each} |
*判断 {@if} ... {@else if} ... {@else} ... {@/if}
*注释 {# 注释内容}
{# 这里是注释内容}
*辅助循环 {@each i in range(m, n)}
?
1 2 3 | {@each i in range(5, 10)} ${i}; {@/each} |
*子模板嵌套 {@include tpl, data}
- 子模板嵌套除了可以引入在数据中指定的子模板外,也可以通过指定字符串`#id`使用写在`script`标签中的模板代码.
- HTML代码:
?
1 2 3 | <script type= "text/juicer" id= "subTpl" > I'm sub content, ${name} </script> |
- Javascript 代码:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | var tpl = 'Hi, {@include "#subTpl", subData}, End.' ; juicer(tpl, { subData: { name: 'juicer' } }); var tpl = 'Hi, {@include subTpl, subData}, End. '; juicer(tpl, { subTpl: "I' m sub content, ${name}", subData: { name: 'juicer' } }); |
一个完整的例子
HTML 代码:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <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 代码:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 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); |
这篇关于javascript轻量级模板引擎juicer使用指南的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!