req.is()
如果此请求声明的“Content-Type”与指定的媒体/mime type
相匹配,则返回 true。
具体来说,此方法将给定的 type
与此请求的“Content-Type”标头进行匹配。
req.is(type);
假设请求包含一个“Content-Type”标头,“text/html; charset=utf-8”
req.is('html');
// -> true
req.is('text/html');
// -> true
req.is('text/*');
// -> true