nodejs 模板引擎jade的简单使用(2)

1.jade

html
  head
    style
  body
    div.box
      div#div1
    div aaa
    div(class="aaa left-warp active")

    div(style="width:200px;height:200px;background:red")
    div(style= {width: '200px', height: '200px', background: 'red'})
    div(title= ['aaa', 'left-warp', 'active'])
    div(title="aaa",id="div2")

jade1.js

var jade=require('jade');

var str=jade.renderFile('./views/1.jade', {pretty: true});

console.log(str);

输出结果:

 

posted @ 2017-11-09 17:04  1点  阅读(194)  评论(0编辑  收藏  举报