其他分享
首页 > 其他分享> > koa-onerror 使用教程

koa-onerror 使用教程

作者:互联网

本系列是我的常用 koa 中间件使用笔记,防止忘记使用方法而作记录

 koa-onerror可以在服务器产生错误(throw抛出等)后自动重定义到指定路径。

 

使用方式

const Koa = require('koa');
const app = new Koa();
const one rror = require('koa-onerror');

let one rrorConf = {
    redirect: '/error' //重定义到error
}

onerror(app, one rrorConf); //使用onerror

这样在之后的中间件抛出错误就可以自动重定向了。

标签:教程,const,koa,app,中间件,onerrorConf,onerror
来源: https://blog.csdn.net/nullccc/article/details/113851337