art-template模板引擎的使用方法

Posted 星同学

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了art-template模板引擎的使用方法相关的知识,希望对你有一定的参考价值。

1.导入art-template

2.定义数据

3.定义模板

4.调用template函数

5.渲染HTML结构

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- 1.引入js库 ,在web全局多了一个函数,叫做template(模板的ID,需要渲染的数据对象)-->
    <script src="../template-web.js"></script>
    <script src="../jquery-1.12.4.min.js"></script>
    <title>Document</title>
</head>

<body>
    <div class="container"></div>
    <!-- 3.定义模板 -->
    <script type="text/html" id="tpl-user">
        <h1>name</h1>
    </script>
    <script>
        // 2.定义需要渲染的数据
        var data = 
            name: \'zs\'
        
        //4.调用template函数
        var htmlStr = template(\'tpl-user\', data)
        //5.渲染HTML结构
        $(\'#container\').html(htmlStr)
    </script>
</body>

</html>

 

以上是关于art-template模板引擎的使用方法的主要内容,如果未能解决你的问题,请参考以下文章

Node学习之(第三章:art-template模板引擎的使用)

js模板引擎art-template使用方法

Node.js第五篇:模板引擎art-template

Node.js第五篇:模板引擎art-template

art-template模板引擎的使用方法

art-template web模板引擎引入JS函数