这是一个创建于 3060 天前的主题,其中的信息可能已经有所发展或是发生改变。
我现在用法如下:
var fn = jade.renderFile('./tmpl/index.jade',{
cache:true,
pretty:true
},function(err,html){
response.writeHead(200, {"Content-Type": "text/html"});
console.log(html);
response.write(html);
response.end();
});
console.log 能正常显示,但是 页面一直在加载。 因为html里加个不存在的css,请问这种情况该怎么办呢?页面直接白屏的
另外问一下。 jade. renderFile 和 jade. compileFile 什么区别呢?