Edit Page

req.get()

Returns the value of the specified header field in this request (req). Note that header names are case-insensitive.

Usage

#
req.get(header);

Example

#

Assuming req contains a header named 'myField' with value 'cat':

req.get('myField');
// -> cat

Notes

#
  • The header argument is case-insensitive.
  • The header argument treats both "referrer" and "referer" as synonyms, because sp3ll1n9.

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