npm安装art-template及使用小案例

  1. 创建一个文件夹 (hello)
  2. 在hello中 初始化包 (在cmd中输入命令 ) npm init
  3. 创建一个index .js文件
  4. 在hello文件夹下 执行 npm install art-template --save
  5. 在index文件中写渲染模板
var template = require('art-template');
var html = template(__dirname + '/tpl.art', {
    user: {
        name: 'aui',
        age:18
    }
});
console.log(html);

6.创建一个和上面代码第二行中相同的文件‘ tpl.art’
文件里面写标准语法

{{if user}}
  

{{user.name}}

{{user.age}}

{{/if}}

7.运行包 node .

你可能感兴趣的:(课堂笔记)