Express.js | res.format()函数
res.format()函数对请求对象的 Accept HTTP 标头(如果存在)执行内容协商。此函数检查 Accept HTTP 请求标头,然后根据 Accept 值调用相应的处理程序。
句法:
res.format(object)
express模块的安装:
- 您可以访问安装 express 模块的链接。您可以使用此命令安装此软件包。
npm install express
- 安装 express 模块后,您可以使用命令在命令提示符下检查您的 express 版本。
npm version express
- 之后,您可以创建一个文件夹并添加一个文件,例如 index.js。要运行此文件,您需要运行以下命令。
node index.js
文件名:index.js
var express = require('express');
var app = express();
var PORT = 3000;
app.get('/', function(req, res){
res.format({
html: function () {
res.send('Greetings from GeeksforGeeks
');
},
text: function () {
res.send('Greetings from GeeksforGeeks');
},
json: function () {
res.send({ message: 'Greetings from GeeksforGeeks' });
}
});
});
app.listen(PORT, function(err){
if (err) console.log(err);
console.log("Server listening on PORT", PORT);
});
在上面的示例中,当 Accept 标头字段设置为 'application/json' 并且如果 Accept 标头字段设置为 'text/plain' 时,输出将为 { “message”: “GeeksforGeeks 的问候” },我们将收到“来自 GeeksforGeeks 的问候”消息作为回应。
运行程序的步骤:
- 项目结构将如下所示:
- 确保您已使用以下命令安装express模块:
npm install express
- 使用以下命令运行 index.js 文件:
node index.js
输出:
Server listening on PORT 3000
- 打开浏览器并转到http://localhost:3000/ ,现在您可以在屏幕上看到以下输出。
Greetings from GeeksforGeeks