express框架 中间件和异常处理
const express = require(‘express’);
const app = express();
// 中间件 一般放在响应结束前面被调用
function myLogger(req,res,next) {
console.log(“myLogger”);
next();
}
app.use(myLogger);
app.get(’/’, (req, res) => {
// res.send(“holle world”);
throw new Error(“error…”)
})
原创
2021-08-06 22:03:50 ·
241 阅读 ·
0 评论