Edit Page

req.body

An object containing text parameters from the parsed request body, defaulting to {}.

By default, the request body can be URL-encoded or stringified as JSON. Support for other formats, such as serialized XML, is possible using the middleware configuration.

Usage

#
req.body;

Notes

#
  • If a request contains one or more file uploads, only the text parameters sent before the first file parameter will be available in req.body.
  • When using Skipper, the default body parser, this property will be undefined for GET requests.

Is something missing?

If you notice something we've missed or could be improved on, please follow this link and submit a pull request to the sails repo. Once we merge it, the changes will be reflected on the website the next time it is deployed.

Reference

Reference