egg框架如何处理bodyParser的错误?

发布于 2022-09-12 13:14:20 字数 2014 浏览 17 评论 0

一旦请求体太大会报错:

2020-11-05 10:30:25,638 WARN 15522 [-/::1/-/5ms POST /file/upload?_csrf=65aNrQrDPCJFtxoR8PeLvdN9] nodejs.PayloadTooLargeError: request entity too large, check bodyParser config
    at readStream (/Users/laiyinan/Project/BackEnd/dolphinMusicV1/node_modules/raw-body/index.js:155:17)
    at executor (/Users/laiyinan/Project/BackEnd/dolphinMusicV1/node_modules/raw-body/index.js:112:5)
    at new Promise (<anonymous>)
    at getRawBody (/Users/laiyinan/Project/BackEnd/dolphinMusicV1/node_modules/raw-body/index.js:111:10)
    at AsyncFunction.module.exports [as json] (/Users/laiyinan/Project/BackEnd/dolphinMusicV1/node_modules/co-body/lib/json.js:39:21)
    at parseBody (/Users/laiyinan/Project/BackEnd/dolphinMusicV1/node_modules/koa-bodyparser/index.js:100:26)
    at bodyParser (/Users/laiyinan/Project/BackEnd/dolphinMusicV1/node_modules/koa-bodyparser/index.js:85:25)
    at dispatch (/Users/laiyinan/Project/BackEnd/dolphinMusicV1/node_modules/koa/node_modules/koa-compose/index.js:42:32)
    at dispatch (/Users/laiyinan/Project/BackEnd/dolphinMusicV1/node_modules/egg-static/node_modules/koa-compose/index.js:42:32)
    at /Users/laiyinan/Project/BackEnd/dolphinMusicV1/node_modules/koa-static-cache/index.js:39:69
message: "request entity too large, check bodyParser config"
expected: 116228823
length: 116228823
limit: 10485760
type: "entity.too.large"
pid: 15522
hostname: laiyinandeMacBook-Pro.local

我想把这个错误以及500状态返回给前端

我在config里这样写:

    onerror: {
      all(err, ctx) {
        console.log(err);
        ctx.body = 'error';
        ctx.status = 500;
      },
    },

能打印出来err但是没有返回500状态

我又改写一个中间件:

'use strict';

module.exports = () => {
  return async (ctx, next) => {
    try {
      await next();
    } catch (err) {
      ctx.app.emit('error', err);
      ctx.body = 'server error';
      ctx.status = err.status || 500;
    }
  };
};

依然不行 如何才能捕获bodyParer的错误并返回给前端?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清醇 2022-09-19 13:14:20

读了一下源码
在koa-bodyParser里有预设了onerror

这样写:

bodyParser: {
      formLimit: '10mb',
      jsonLimit: '10mb',
      textLimit: '10mb',
      onerror:
        (err, ctx) => {
          console.log(err);
          ctx.body = 'error';
          ctx.status = 500;
        },
    },

可以返回错误了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文