Express и Node.js обучение от StrongLoop

Этот документ может быть устаревшей по отношению к документации на английском языке . Для получения последних обновлений , пожалуйста, обратитесь к документации на английском языке.

This document might be outdated relative to the documentation in English. For the latest updates, please refer the documentation in English.

Using template engines with Express

Before Express can render template files, the following application settings have to be set.

Then install the corresponding template engine npm package.

$ npm install jade --save

Express-compliant template engines such as Jade, export a function named __express(filePath, options, callback), which is called by res.render() to render the template code.

Some template engines do not follow this convention, the Consolidate.js library was created to map all of node’s popular template engines to follow this convention, thus allowing them to work seamlessly within Express.

Once the view engine is set, you don’t have to explicitly specify the engine or load the template engine module in your app, Express loads it internally as shown below, for the example above.

app.set('view engine', 'jade');

Create a Jade template files named “index.jade” in the views directory, with the following content.

html
  head
    title!= title
  body
    h1!= message

Then create a route to render the “index.jade” file. If the view engine property is not set, you will have to specify the extension of the view file, else you can omit it.

app.get('/', function (req, res) {
  res.render('index', { title: 'Hey', message: 'Hello there!'});
})

On making a request to the home page, “index.jade” will be rendered as HTML.

To better understand how template engines work in Express, read “Developing template engines for Express”.