req.get()Returns the value of the specified header field in this request (req). Note that header names are case-insensitive.
req.get(header);
Assuming req contains a header named 'myField' with value 'cat':
req.get('myField');
// -> cat
- The
headerargument is case-insensitive.- The
headerargument treats both "referrer" and "referer" as synonyms, because sp3ll1n9.
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.