Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 348 Bytes

19.md

File metadata and controls

14 lines (9 loc) · 348 Bytes

express中间件

客户端发起的任何请求,到达服务器后,都会触发中间件,叫做全局生效的中间件。

通过调用app.use(中间件函数),即可以定义一个全局生效的中间键

const mw= function(req,res,next){
    console.log('这个是一个最简单的中间件函数')
    next()
}