放假之前准备啃完Chart.js的源码(好难啃%>_<%),正好学习下Canvas的用法。啃着啃着啃出一个template的源码。
这个JS模板来自jquery作者:John Resig的博客。代码加了注释才35行,但完全实现了模板函数的功能。
用法和其他的模板(baidutemplate.js,underscore.js带的模板)差不多,下面是个例子:
首先,script标签包含模板:
<script type="text/html" id="user_tmpl"> <% for ( var i = 0; i < users.length; i++ ) { %> <li><a href="<%=users[i].url%>"><%=users[i].name%></a></li> <% } %> </script>
js代码:
var result = document.getElementById(‘result‘); var users = [{ name: ‘aaaa‘, url: ‘http://baidu.com‘ },{ name: ‘bbbb‘, url: ‘http://baidu.com‘ },{ name: ‘cccc‘, url: ‘http://baidu.com‘ }]; var data = { users: users } result.innerHTML = tmpl(‘user_tmpl‘, data);
这是常用的用法,除此之外,还有另外一种用法。
通过id取得模板函数,然后稍后执行这个函数,取得结果。比如:
var show_user = tmpl(‘user_tmpl‘), html = ‘‘; for(var i = 0; i < users.length; i++) { console.log(show_user(users[i])) }
注:这个循环用的数组必须是users,和script里的一样,否则会出现错误。
源代码贴在这里,稍后解析:
// Simple JavaScript Templating // John Resig - http://ejohn.org/ - MIT Licensed (function(){ var cache = {}; this.tmpl = function tmpl(str, data){ // Figure out if we‘re getting a template, or if we need to // load the template - and be sure to cache the result. var fn = !/\W/.test(str) ? cache[str] = cache[str] || tmpl(document.getElementById(str).innerHTML) : // Generate a reusable function that will serve as a template // generator (and which will be cached). new Function("obj", "var p=[],print=function(){p.push.apply(p,arguments);};" + // Introduce the data as local variables using with(){} "with(obj){p.push(‘" + // Convert the template into pure JavaScript str .replace(/[\r\t\n]/g, " ") .split("<%").join("\t") .replace(/((^|%>)[^\t]*)‘/g, "$1\r") .replace(/\t=(.*?)%>/g, "‘,$1,‘") .split("\t").join("‘);") .split("%>").join("p.push(‘") .split("\r").join("\\‘") + "‘);}return p.join(‘‘);"); // Provide some basic currying to the user return data ? fn( data ) : fn; }; })();
时间: 2024-10-12 23:30:52