欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

template.js前端模板引擎使用详解

程序员文章站 2022-06-17 18:30:15
本文介绍了template.js前端模板引擎使用,分享给大家,具体如下: 下载地址: 作者编写的文档:https://github.com/yanhaijing/t...

本文介绍了template.js前端模板引擎使用,分享给大家,具体如下:

下载地址:

作者编写的文档:https://github.com/yanhaijing/template.js/blob/master/readme.md

源码学习

默认的开始标签和结束标签分别是:

  1. stag: '<%',//开始标签,可以重写,我项目中使用的是<:
  2. etag: '%>',//结束标签,我项目中使用的是:>

快速上手

编写模板

使用一个type=”text/html”的script标签存放模板,或者放到字符串中:

<script id="tpl" type="text/html">
<ul>
  <%for(var i = 0; i < list.length; i++) {%>
  <li><%:=list[i].name%></li>
  <%}%>
</ul>
</script>

渲染模板

var tpl = document.getelementbyid('tpl').innerhtml;
template(tpl, {list: [{name: "yan"},{name: "haijing"}]});

输出:

<ul>
  <li>yan</li>
  <li>haijing</li>
</ul>

转义

<script id="tpl" type="text/html">
  <table>
    <caption>for循环输出两次</caption>
    <%var test = '输出自定义变量';%>
    <%for (var i = 0; i < 2; i++) {%>
      <tr><td><%=html%>默认</td><td><%=html%></td></tr>
      <tr><td><%:h=html>html转义</td><td><%:h=html%></td></tr>
      <tr><td><%:=html>不转义</td><td><%:=html%></td></tr>
      <tr><td><%:u=url>uri转义</td><td><%:u=url%></td></tr>
      <tr><td>var</td><td><%:=test%></td></tr>
      <tr><td><%=test + 1>表达式</td><td><%=test + 1%></td></tr>
      <%if (true) {%>
        <tr><td>if</td><td>if 语句</td></tr>
      <%}%>
      <tr><td>分割线</td><td>------------------------------</td></tr>
    <%}%>
  </table>
  </script>
  <script src="../template.js"></script>
  <script>
  var html = template(document.getelementbyid('tpl').innerhtml, {
    url: 'http://yanhaijing.com?name=颜海镜', 
    html: '<div id="test">template.js "</div>'
  });
  console.log(html);
  document.getelementbyid('wp').innerhtml = html;
  </script>
<script>
  template.config({stag: '<#', etag: '#>'});
  var tpl1 = '<div><#:=name#></div>';
  console.log('<##>:', template(tpl1, {name: '更改tag<##>'}));
  template.config({stag: '{{', etag: '}}'});
  var tpl1 = '<div>{{:=name}}</div>';
  console.log('{{}}:', template(tpl1, {name: '更改tag{{}}'}));
  template.config({stag: '<%', etag: '#>'});
  var tpl1 = '<div><%:=name#></div>';
  console.log('<%#>:', template(tpl1, {name: '不一致也可以哦,更改tag<%#>'})); 
  template.config({stag: '<%', etag: '%>', compress: true});
  var tpl1 = '<div>空格会被压缩 空格 空格</div>';
  console.log('compress:', template(tpl1, {}));  
  template.config({stag: '<%', etag: '%>', escape: false});
  var tpl1 = '<div>默认输出不进行转义<%=html%></div>';
  console.log('escape:', template(tpl1, {html: '<div>html</div>'}));
  </script>

注册函数

<div id="wp"></div>
  <script id="tpl" type="text/html">
  <%=dateformat(date.now(), 'yyyy年 mm月 dd日 hh:mm:ss')%>
  </script>
  <script src="../template.js"></script>
  <script>
    template.registerfunction('dateformat', function (date, format) {
      date = new date(date);
      var map = {
        "m": date.getmonth() + 1, //月份 
        "d": date.getdate(), //日 
        "h": date.gethours(), //小时 
        "m": date.getminutes(), //分 
        "s": date.getseconds(), //秒 
        "q": math.floor((date.getmonth() + 3) / 3), //季度 
        "s": date.getmilliseconds() //毫秒 
      };
      format = format.replace(/([ymdhmsqs])+/g, function(all, t){
        var v = map[t];
        if(v !== undefined){
          if(all.length > 1){
            v = '0' + v;
            v = v.substr(v.length-2);
          }
          return v;
        }
        else if(t === 'y'){
          return (date.getfullyear() + '').substr(4 - all.length);
        }
        return all;
      });
      return format;
    });
    console.log(template.registerfunction());
    console.log(template.registerfunction('dateformat'));
  </script>
  <script>
  var html = template(document.getelementbyid('tpl').innerhtml, {});
  console.log(html);
  document.getelementbyid('wp').innerhtml = html;
  template.unregisterfunction('dateformat');
  console.log(template.registerfunction('dateformat'));
  </script>
 
<div id="wp"></div>
  <script id="tpl" type="text/html">
  <%:up='yanhaijing'%>
  </script>
  <script src="../template.js"></script>
  <script>
    template.registermodifier('up', function (str) {
      return str.touppercase();
    });
    console.log(template.registermodifier());
    console.log(template.registermodifier('up'));
  </script>
  <script>
  var html = template(document.getelementbyid('tpl').innerhtml, {});
  console.log(html);
  document.getelementbyid('wp').innerhtml = html;
  template.unregistermodifier('up');
  console.log(template.registermodifier('up'));
  </script>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。