开发者

node.js express set title

开发者 https://www.devze.com 2023-02-18 01:50 出处:网络
How do I set the title of a page/route with express and j开发者_运维百科ade?simple.jade: !!! 5 title= title

How do I set the title of a page/route with express and j开发者_运维百科ade?


simple.jade:

!!! 5
 title= title

express application:

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


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' });
});


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'
  });
});


In your server (app.js):

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

精彩评论

暂无评论...
验证码 换一张
取 消