其它

使用art-template模板引擎渲染数据

2018-08-15  本文已影响991人  422ccfa02512

一:什么是art-template

二:art-template特性

  1. 拥有接近 JavaScript 渲染极限的的性能
  2. 调试友好:语法、运行时错误日志精确到模板所在行;支持在模板文件上打断点(Webpack Loader)
  3. 支持 Express、Koa、Webpack
  4. 支持模板继承与子模板
  5. 浏览器版本仅 6KB 大小

三:art-template与其他模板引擎运行速度对比

模板引擎运行速度对比

四:关于art-template的一些学习网站

https://github.com/aui/art-template(art-template完整文档)

https://aui.github.io/art-template/zh-cn/index.html(art-template中文文档)

五:安装art-template,有以下2种方式:

  1. 在命令行中使用如下命令
npm install art-template --save
  1. 也可以在浏览器中实时编译,进入链接ctrl+s保存文件至项目目录中:lib/template-web.js(gzip: 6kb这个源码是压缩过的)

六:art-template语法

标准语法
{{value}}
{{data.key}}
{{data['key']}}
{{a ? b : c}}
{{a || b}}
{{a + b}}
原始语法
<% 语句 %>
<% for(var i=0;i<list.length;i++)%{> <%}>
<%=  表达式 %>
<%= value %>
<%= data.key %>
<%= data['key'] %>
<%= a ? b : c %>
<%= a || b %>
<%= a + b %>

<% %><%= %>这个的区别需要注意<% %>这个跟语句,若要跟表达式,则使用<%= %>

七: 定义模板

<script id="tpl-user" type="text/html">
{{if user}}
  <h2>{{user.name}}</h2>
{{/if}}
</script>

八:art-template使用示例:

两种定义模板方式用一个就可以了
<div class="span_2 list_box">
    
</div>

    <!-- 定义模板:原始语法 --><!---下面的list为js文件中渲染数据对象的属性名,curr为遍历数组元素对象时当前属性值,i为当前索引-->
    <script type="text/html" id="list_temp2">
    <% for (var i = 0, len = list.length; i < len; i++) { var curr=list[i]; %>
    <div class="col_1_of_single1 span_1_of_single1">
            <a href="/html/single.html">
             <img src="<%= curr.img_url %>" class="img-responsive" alt=""/>
             <h3><%= curr.title %></h3>
             <p><%= curr.desc %></p>
             <h4><%= curr.price %></h4>
             </a>  
        </div> 
        <% } %>
    </script>
    <!-- 定义模板:标准语法(简洁语法) -->
    <script type="text/html" id="list_temp">
    <!--这个list是js渲染数据对象的属性名,curr是遍历数组元素时用于代替list的,index是索引,即curr【index】为当前值代替list-->
    {{ each list curr index }}
    <div class="col_1_of_single1 span_1_of_single1">
            <a href="/html/single.html">
             <img src="{{ curr.img_url2 }}" class="img-responsive" alt=""/>
             <h3>{{ curr.title }}</h3>
             <p>{{ curr.desc }}</p>
             <h4>{{ curr.price }}</h4>
             </a>  
        </div> 
        {{ /each }}
    </script>

<!--js文件中使用requirejs引入需要的模块包括art-template模块(取的名字为template,这个模块是在config文件中配置好的一个art-template短名称),rap2模拟假数据,jquery获取假数据以及将数据渲染至html文件中的.list_box中-->
require(["config"], function(){
  require(["jquery", "template", "header", "footer"], function($, template, header){
    <!--jquery中方法动态获取列表页面数据(模拟假数据)-->
        $.getJSON("http://rap2api.taobao.org/app/mock/25320/api/list", function(data){
    <!--这个template是art-templatede中有的函数,他有2个参数,第一个是script标签的id,第二个参数是模板中需要循环遍历的对象和其值-->
            const html = template("list_temp2", {list : data.res_body.data});
            $(".list_box").html(html);
        })
    });
});
上一篇下一篇

猜你喜欢

热点阅读