node.js 表达设置标题

发布于 2024-10-23 20:07:26 字数 34 浏览 7 评论 0原文

如何使用express和jade设置页面/路线的标题?

How do I set the title of a page/route with express and jade?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

彩虹直至黑白 2024-10-30 20:07:26

simple.jade:

!!! 5
 title= title

快速应用:

app.get('/simple',function(req,res) {
    res.render('simple',{title='mytitle'});
}

simple.jade:

!!! 5
 title= title

express application:

app.get('/simple',function(req,res) {
    res.render('simple',{title='mytitle'});
}
我们的影子 2024-10-30 20:07:26

路线中指定页面标题是最简单的方法。

此示例显示了我的 routes 文件夹中的 index.js 文件。这是 Express 的默认设置。

/* GET home page. */
router.get('/', function(req, res, next) {
  res.render('index', { title: 'Page Title' });
});

Specifying the page title in the route is easiest method.

This example shows the index.js file in my routes folder.. which is the default set by Express.

/* GET home page. */
router.get('/', function(req, res, next) {
  res.render('index', { title: 'Page Title' });
});
浅紫色的梦幻 2024-10-30 20:07:26

这就是我所做的,它对我有用。该示例使用假设的“视频”视图,需要标题为“视频库”,并进行相应调整。

layout.jade //这是在express apps中默认添加的

doctype html
html
  head
    title= title
    link(rel='stylesheet', href='/stylesheets/style.css')
  body
    block content

videos.jade //你可以创建一个像这样的视图

extends layout

block content
  h1= title

app.js //该文件是默认的,但您必须添加这样的路由。并设置标题

app.get('/videos/', function(req, res){
  res.render('videos', {
    title: 'Video Gallery'
  });
});

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

doctype html
html
  head
    title= title
    link(rel='stylesheet', href='/stylesheets/style.css')
  body
    block content

videos.jade //You can create a view such as this

extends layout

block content
  h1= title

app.js //The file is default but you must add a route like this. And set the title

app.get('/videos/', function(req, res){
  res.render('videos', {
    title: 'Video Gallery'
  });
});
谎言月老 2024-10-30 20:07:26

在您的服务器(app.js)中:

app.set('title', 'My Site');

In your server (app.js):

app.set('title', 'My Site');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文