创建一个包含用户信息的jade默认布局
我正在创建一个使用express.js 和jade 的node.js 项目。我正在尝试重新创建一个默认布局,当用户登录时将显示他们的头像、新消息等。这可能吗?我尝试在谷歌上搜索,但没有得到任何结果,即使用 django、rails 等替换了jade。感谢您的考虑。
I'm creating a node.js project that uses express.js and jade. I'm trying to reate a default layout that when a user's logged in will show their avatar, new messages, and stuff like that. Is this possible? I've tried searching google and got nothing back, even after replacing jade with django, rails, etc. Thank you for your consideration.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。您可以创建自己的模板,甚至可以使用jade的block和extend关键字覆盖它们。
块只是 Jade 的“块”,可以在子模板中替换,此过程是递归的。
现在要扩展布局,只需创建一个新文件并使用 extends 指令(如下所示)并给出路径。
详细信息请参见“模板继承”。 https://github.com/visionmedia/jade
Yes, this is possible. you can create your own template and even override them using block and extend keywords of jade.
A block is simply a "block" of Jade that may be replaced within a child template, this process is recursive.
Now to extend the layout, simply create a new file and use the extends directive as shown below, giving the path.
For details see "Template inheritance". https://github.com/visionmedia/jade