Node.js Express 框架中的多个布局文件
我已经使用 Express 框架在节点中设置了一个项目。我喜欢它允许我在视图目录中使用名为“layout”的文件创建布局。但是如果我想要多个布局文件怎么办?我没有看到这样的选择。有谁知道办法吗?
也许是这样的:
res.render('report', {
title: 'My report',
layoutfile: 'mylayout'
});
I have setup a project in node with the express framework. I like that it allows me to create a layout with a file called "layout" in the views directory. But what if I want to have multiple layout files? I don't see an option for that. Does anyone know a way?
Maybe something like:
res.render('report', {
title: 'My report',
layoutfile: 'mylayout'
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
layout
就是您正在寻找的:)假设该文件与您正在使用的引擎匹配。如果没有,您需要添加扩展名,例如
layout.jade
layout
is what you're looking for :)Assuming that the file matches the engine you're using. If not, you need to tack on the extension, e.g.
layout.jade