const express = require("express");
// 创建http实例
const app = express();
app.use((req,res,next) => {
console.log('请求开始...', req.method,req.url);
next();
})
app.use((req,res,next) => {
req.cookie = {
userId: 'aaa111'
}
next()
})
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();
});
app.use((req, res, next) => {
console.log('处理 404')
res.json({
errno: -1,
msg: '404 not fount'
})
})
app.listen(3000, () => {
console.log('server is running on port 3000')
})
#yyds干货盘点#使用express连接http
原创
©著作权归作者所有:来自51CTO博客作者尼羲的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
#yyds干货盘点# 使用质量
使用质量
软件质量 产品文档 可维护性 -
#yyds干货盘点#【yyds干货盘点】Vue 入门指南
VUE入门技术
Vue HTML 应用程序