Node.js

Express(路由中断)

2017-11-24  本文已影响14人  余生筑

模板引擎

常见模板引擎有pug,handlebars,ejs等

由占位符所组成的部分会被后端用相应数据进行填充

<!DOCTYPE html>
<html>
  <head>
    <title><%= title %></title>
    <link rel='stylesheet' href='/stylesheets/style.css' />
  </head>
  <body>
    <h1><%= title %></h1>
    <p>Welcome to <%= title %></p>
  </body>
</html>
<h1><%= message %></h1>
<h2><%= error.status %></h2>
<pre><%= error.stack %></pre>

路由中断

var express = require('express');
var router = express.Router();

router.use('/', function(req, res, next) {
 console.log('mv1')
 next('router')
});
router.use('/', function(req, res, next) {
    console.log('mv2')
    next()
   });
   
module.exports = router;
mv2不显示
上一篇下一篇

猜你喜欢

热点阅读