Giter Club home page Giter Club logo

Comments (4)

dead-horse avatar dead-horse commented on May 4, 2024 2

@felixsanz I think this is co-body's bug that don't catch the error thrown in inflation, and this will be fix in cojs/co-body#54, hope it won't break your code since I'll consider it as a bug fix.

from bodyparser.

dead-horse avatar dead-horse commented on May 4, 2024 1

because bodyparser's onerror only catch the error thrown when parse the body, so it won't(and shouldn't) catch inflation's error.

this is not related with bodyparser, but if you want to ignore this error, you can try

app.use(async (ctx, next) => {
  try {
    await next();
  } catch (err) {
    // your custom error handler
  }
});
app.use(bodyparser());
app.use(otherMiddleware());

from bodyparser.

felixsanz avatar felixsanz commented on May 4, 2024

The problem is the inflation lib:

  switch (encoding) {
  case 'gzip':
  case 'deflate':
    break
  case 'identity':
    return stream
  default:
    var err = new Error('Unsupported Content-Encoding: ' + encoding)
    err.status = 415
    throw err
  }

This code is what is causing an early return (the default case).

Why the bodyparser promise catch doesn't catch it?

from bodyparser.

felixsanz avatar felixsanz commented on May 4, 2024

I tried to fix it but too many magic libraries involved :( Can someone help please?

This is a workaround:

  app.use(async (ctx, next) => {
    try {
      return bodyParser({
        enableTypes: ['text'],
        extendTypes: {
          text: ['text/html'],
        },
      })(ctx, next)
    } catch (err) {
      return ctx.throw(new Error('foo'), 400)
    }
  })

from bodyparser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.