req.body属性包含在请求正文中提交的数据的键值对。默认情况下,它是未定义的,并且在使用称为body-parsing的中间件(例如express.urlencoded()或express.json())时填充。
用法:
req.body
参数:没有参数。
返回值:Object
快递模块的安装:
- 您可以访问安装Express模块的链接。您可以使用此命令安装此软件包。
npm install express
- 安装Express模块后,可以使用命令在命令提示符下检查Express版本。
npm version express
- 之后,您可以仅创建一个文件夹并添加一个文件,例如index.js。要运行此文件,您需要运行以下命令。
node index.js
范例1: 文件名:index.js
var express = require('express');
var app = express();
var PORT = 3000;
// For parsing application/json
app.use(express.json());
// For parsing application/x-www-form-urlencoded
app.use(express.urlencoded({ extended:true }));
app.post('/profile', function (req, res) {
console.log(req.body);
res.send();
});
app.listen(PORT, function(err){
if (err) console.log(err);
console.log("Server listening on PORT", PORT);
});
运行程序的步骤:
- 项目结构将如下所示:
- 确保使用以下命令安装了Express模块:
npm install express
- 使用以下命令运行index.js文件:
node index.js
输出:
Server listening on PORT 3000
- 现在通过以下正文向http://localhost:3000 /profile发出POST请求:
{ "title":"Greetings from GeeksforGeeks" }
现在,您可以在控制台上看到以下输出:
Server listening on PORT 3000 { title:'Greetings from GeeksforGeeks' }
范例2: 文件名:index.js
var express = require('express');
var app = express();
var PORT = 3000;
app.use(express.json());
app.use(express.urlencoded({ extended:true }));
app.post('/signup', function (req, res) {
var data = req.body;
console.log("Name:", data.name);
console.log("Age:", data.age);
console.log("Gender:", data.gender);
res.send();
});
app.listen(PORT, function(err){
if (err) console.log(err);
console.log("Server listening on PORT", PORT);
});
使用以下命令运行index.js文件:
node index.js
现在,使用以下请求正文向http://localhost:3000 /signup发出POST请求:
{ "name":"Gourav", "age":13, "gender":"Male" }
输出:现在,您将在控制台屏幕上看到以下输出:
Server listening on PORT 3000 Name: Gourav Age: 13 Gender: Male
参考: https://expressjs.com/en/4x/api.html#req.body
相关用法
- CSS transition-property用法及代码示例
- CSS all属性用法及代码示例
- CSS top属性用法及代码示例
- CSS nav-right用法及代码示例
- CSS nav-up用法及代码示例
- CSS nav-down用法及代码示例
- CSS right属性用法及代码示例
- CSS max-width用法及代码示例
- CSS quotes属性用法及代码示例
- CSS order属性用法及代码示例
- HTML DOM URL用法及代码示例
- HTML DOMRect top用法及代码示例
- CSS grid-row-gap用法及代码示例
- CSS clear属性用法及代码示例
- HTML DOMRect right用法及代码示例
- CSS cursor属性用法及代码示例
- CSS transform属性用法及代码示例
注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 Express.js req.body Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。