编程语言
首页 > 编程语言> > node之局部生效的中间件

node之局部生效的中间件

作者:互联网

// 导入 express 模块
const express = require('express')
// 创建 express 的服务器实例
const app = express()

// 1. 定义中间件函数
const mw1 = (req, res, next) => {
  console.log('调用了局部生效的中间件')
  next()
}

// 2. 创建路由
app.get('/', mw1, (req, res) => {
  res.send('Home page.')
})
app.get('/user', (req, res) => {
  res.send('User page.')
})

// 调用 app.listen 方法,指定端口号并启动web服务器
app.listen(80, function () {
  console.log('Express server running at http://127.0.0.1')
})

 

标签:node,req,const,res,app,express,中间件,生效
来源: https://www.cnblogs.com/dxboot/p/16330052.html