res.status()Set the status code of this response.
res.status(statusCode);
res.status(418);
res.send('I am a teapot');
- The status code may be set up until the response is sent.
res.status()is effectively just a chainable alias of Node'sres.statusCode = …;.
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.