Express 4 handlebars 不使用layout写法

Express 4 handlebars 不使用layout写法

Express
node
nodejs
handlebars
layout

最近刚开始学习使用nodejs。
使用express搭建了一个基于handlebars的模板引擎的基础项目。
发现所有页面都继承了layout...
那layout怎么才能不继承layout呢?
直接上代码:

router.get('/', function(req, res) {
res.render('home', {layout: false});
});
上一篇:[Android]异步 layout inflation(翻译)


下一篇:JS 代码中到底加不加分号