Edit Page

req.method

The request method (aka "verb").

Usage

#
req.method;

Example

#

If a client sends a POST request to /product:

req.method;
// -> "POST"

Notes

#
  • All requests to a Sails server have a "method", even via WebSockets (this is thanks to the request interpreter).

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