Giter Site home page Giter Site logo

Comments (8)

dougwilson avatar dougwilson commented on April 25, 2024

Yes. The reason is historical that req.body is always set to {} unless there was actually a matching body. The main reason is stacking the parsers. In the next major, req.body really shouldn't even get set unless there was a body. At least setting it to {} allows you to differentiate between no body and a body of an empty string.

from body-parser.

tlivings avatar tlivings commented on April 25, 2024

I'd think that in the case of bodyParser.text() you'd likely prefer the empty string to an object. The expectation is that it's text, not an object. If it gets automatically assigned to {} then !req.body will never pass, and the developer will have no idea why.

from body-parser.

aredridel avatar aredridel commented on April 25, 2024

Yeah, definitely should be an empty string in that case!

I'd expect undef if there was no body.

from body-parser.

dougwilson avatar dougwilson commented on April 25, 2024

Right. I'm not disagreeing, but I was just saying the reason it's set to {} when the body was not a text body was because of backwards-compatibility reasons. In the next major, req.body will just be undefined if there was no parsed body on the request.

from body-parser.

dougwilson avatar dougwilson commented on April 25, 2024

Anyway, if you post a body that is plain text and the body is empty (so Content-Length: 0), then req.body is set to an empty string ('') by this module. It's only set to {} if the request didn't actually have a text body at all.

from body-parser.

dougwilson avatar dougwilson commented on April 25, 2024

The test https://github.com/expressjs/body-parser/blob/1.7.0/test/text.js#L33-L42 shows that the empty body comes through as req.body === '' if you are in doubt.

from body-parser.

dougwilson avatar dougwilson commented on April 25, 2024

Verified the behavior is a bug within type-is and how it is interpreting the HTTP spec.

from body-parser.

hans-d avatar hans-d commented on April 25, 2024

thanks for the help!

from body-parser.

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.