req.methodThe request method (aka "verb").
req.method;
If a client sends a POST request to /product:
req.method;
// -> "POST"
- All requests to a Sails server have a "method", even via WebSockets (this is thanks to the request interpreter).
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.