Express.js – req.is() 方法
req.is() 方法用于返回匹配的内容类型。它返回匹配的内容类型,条件是传入请求的 "Content-type" HTTP 标头与 type 参数所指定 MIME type 匹配。如果请求没有内容主体,则返回 NULL,否则返回 False。
语法
req.is( type )
type 参数获取要匹配的内容类型的输入。例如,html、text/html、text/* 等。
示例 1
创建一个名为 "req.js" 的文件并复制以下代码段。在创建文件后,使用命令 "node req.js" 来运行此代码,如下例所示 −
// req.is() Method Demo Example // Importing the express module var express = require('express'); // Initializing the express and port number var app = express(); var PORT = 3000; // Defining an endpoint app.get('/', function (req, res) { console.log(req.is('application/json')); res.end(); }); app.listen(PORT, function(err){ if (err) console.log(err); console.log("Server listening on PORT", PORT); });
通过 GET 请求访问以下端点 −
https://127.0.0.1:3000/
并将 content-type 设置为 'application/json',也不要将 request 主体留空,因为一个空的 request 主体会返回 'NULL' 作为响应。
输出
C:\home
ode>> node req.js Server listening on PORT 3000 application/json
示例 2
我们来看另一个示例。
// req.is() Method Demo Example // Importing the express module var express = require('express'); // Initializing the express and port number var app = express(); var PORT = 3000; // Defining an endpoint app.get('/', function (req, res) { console.log(req.is('text/*')); res.end(); }); app.listen(PORT, function(err){ if (err) console.log(err); console.log("Server listening on PORT", PORT); });
通过 GET 请求访问以下端点 −
https://127.0.0.1:3000/
并将 content-type 设置为 'text/*' 以外的任何内容,也不要将 request 主体留空,因为一个空的 request 主体会返回 'null' 作为响应。
输出
C:\home
ode>> node req.js Server listening on PORT 3000 false
广告