Edit Page

res.status()

Set the status code of this response.

Usage

#
res.status(statusCode);

Example

#
res.status(418);
res.send('I am a teapot');

Notes

#
  • The status code may be set up until the response is sent.
  • res.status() is effectively just a chainable alias of Node's res.statusCode = …;.

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