9-5 'get /api 路由' 未被打印
来源:10-5 express中间件
weixin_慕慕8136048
2020-03-13
app.get(’/api’, (req, res, next) => {
console.log(‘get /api 路由’);
next();
})
app.post(’/api’, (req, res, next) => {
console.log(‘post /api 路由’);
next();
})
您好双越老师,9-5视频中这两个函数的console.log()的内容并未被打印,可是在视频里您却说是打印了的,请问是怎么回事呢?
写回答
1回答
-
双越
2020-03-13
你请求的路由是 GET 请求 /api/get-cookie 吧?
按理说是会打印 'get /api 路由'的。
062020-11-12
相似问题