在执行
app.get('/api/get-cookie', (req, res, next) => {
console.log('/api/get-cookie路由');
res.json({
error: 0,
data: req.cookie
})
next();
})
app.post('/api/get-post-data', (req, res, next) => {
console.log('/api/get-post-data路由');
res.json({
error: 0,
data: req.body
})
next();
})
这两个函数时,下面这两个函数并不会被执行打印
app.get('/api', (req, res, next) => {
console.log('get /api路由');
next();
})
app.post('/api', (req, res, next) => {
console.log('post /api路由');
next();
})
在课件中,log并没有被打印出来,但是老师讲解时说是执行了,请老师再次查看一下,这块讲解是否有出入。