📜  如何在 express 中处理所有路由器的所有错误 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:41.889000             🧑  作者: Mango

代码示例3
const handleErrorAsync = func => (req, res, next) => {
    func(req, res, next).catch((error) => next(error));
};