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);
输出结果:
越努力越幸运