req.headers
一个包含当前请求中给定的预定义/自定义头的对象。
req.headers;
我们经常需要检查当前请求的头部信息。这在 Sails 中很容易实现。
req.headers
对象的示例输出
console.log(req.headers);
{ host: 'localhost:1337',
connection: 'keep-alive',
'cache-control': 'no-cache',
'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.89 Safari/537.36',
accept: '*/*',
'accept-encoding': 'gzip, deflate, sdch',
'accept-language': 'en-US,en;q=0.8,hi;q=0.6',
cookie: 'sdfkslddklfk; sails.sid=s%3skdlfjkj1231lsdfnsc,m' }
如果要访问任何特定的、自定义的或预定义的头部信息,可以使用方括号表示法
req.headers['custom-header'];
或点表示法
req.headers.host;