app.use('/api',(req,res,next)=>{
console.log('处理api路由')
next()
})
app.get('/api',(req,res,next)=>{
console.log('get /api路由')
next()
})
老师你在课程中提到,当我们访问http://localhost:3000/api/abc发出GET请求,app.use(’/api’)会执行,而app.get(’/api’)也会执行,但是实际上app.get(’/api’)不执行,只有在访问http://localhost:3000/api才会执行,请问这里是什么原因呢