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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。