Files
expressjs.com/en/api/req-is.jade
TJ Holowaychuk 9e957d4e2c Initial commit
2012-07-31 20:33:12 -07:00

23 lines
502 B
Plaintext

section
h3(id='req.is') req.is(type)
p.
Check if the incoming request contains the "Content-Type"
header field, and it matches the give mime <code>type</code>.
+js.
// With Content-Type: text/html; charset=utf-8
req.is('html');
req.is('text/html');
req.is('text/*');
// => true
// When Content-Type is application/json
req.is('json');
req.is('application/json');
req.is('application/*');
// => true
req.is('html');
// => false