app.use(’/api’, (req, res, next) => {
console.log(‘处理 /api 路由’)
next()
})
app.get(’/api’, (req, res, next) => {
console.log(‘get /api 路由’)
next()
})
app.post(’/api’, (req, res, next) => {
console.log(‘post /api 路由’)
next()
})
express-test mac$ node app.js
server is ok
请求开始… GET /api/get-cookie
处理 /api 路由
get /api/get-cookie
上面是老师上课时的代码的一部分,下面是浏览器访问localhost:3000/api/get-cookie输出的内容,看起来app.get(’/api’, (req, res, next) => {
console.log(‘get /api 路由’)
next()
})这个函数是没有命中的,老师上课时讲这个也会执行,跟老师上课讲的好像有点出入,包括后面老师带我们写的那个中间件原理分析的代码执行后,这个函数也输出了,麻烦老师解答下,谢谢啦