node.js 表达设置标题
如何使用express和jade设置页面/路线的标题?
How do I set the title of a page/route with express and jade?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用express和jade设置页面/路线的标题?
How do I set the title of a page/route with express and jade?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
simple.jade:
快速应用:
simple.jade:
express application:
在路线中指定页面标题是最简单的方法。
此示例显示了我的
routes
文件夹中的index.js
文件。这是 Express 的默认设置。Specifying the page title in the route is easiest method.
This example shows the
index.js
file in myroutes
folder.. which is the default set by Express.这就是我所做的,它对我有用。该示例使用假设的“视频”视图,需要标题为“视频库”,并进行相应调整。
layout.jade //这是在express apps中默认添加的
videos.jade //你可以创建一个像这样的视图
app.js //该文件是默认的,但您必须添加这样的路由。并设置标题
This is what I did and it worked for me. The example uses a hypothetical "videos" view that needs a title to be "video gallery", adjust accordingly.
layout.jade //This is added by default in express apps
videos.jade //You can create a view such as this
app.js //The file is default but you must add a route like this. And set the title
在您的服务器(app.js)中:
In your server (app.js):