语法倒是很简单,加上条件判断后,格式实在太难看,很难看清楚结构,维护找起来比较烦。。
跟我们之前用的一个模板很像,,加上循环,判断啥的,加缩进把页面结构很难看清楚,,不加缩进把循环逻辑很难看清楚
跟我们之前用的一个模板很像,,加上循环,判断啥的,加缩进把页面结构很难看清楚,,不加缩进把循环逻辑很难看清楚
2017-10-27
这是了解jade很好的课程,如果你跟着打了一遍。然后马上用jade写了页面(有实际应用的课程),就能学到很多了好么。光看有什么用
2017-10-04
npm install html2jade -g
html2jade http://www.imooc.com > imooc.jade
在程序里var html2jade = require('Document(document,{},function(err,jade){})
html2jade http://www.imooc.com > imooc.jade
在程序里var html2jade = require('Document(document,{},function(err,jade){})
2017-09-16
jade.compile('div #{course}',{})返回函数,将jade编译成特定的文件类型
jade.render('',{})直接传入待编译的代码进行编译
jade.renderFile('url',{变量})
Content-type:'text/plain' 文本格式 ‘text/html’输出页面
jade.render('',{})直接传入待编译的代码进行编译
jade.renderFile('url',{变量})
Content-type:'text/plain' 文本格式 ‘text/html’输出页面
2017-09-15