今天在使用postman测试nodejs后台接口程序时,发现通过post发送的请求获取不到res.body里面的参数
原因:nodejs中req.body默认为空,如果使用的是express框架,可以通过使用express自带的中间件解决,或通过安装body-parser中间件进行解决,
方法一:通过express内置中间件解决;文章来源:https://www.toymoban.com/news/detail-573348.html
const express = require("express");
const app = express();
// 解析 url-encoded格式的表单数据
app.use(express.urlencoded({ extended: false }));
// 解析json格式的表单数据
app.use(express.json());
方法二:通过安装body-parser中间件解决;文章来源地址https://www.toymoban.com/news/detail-573348.html
const express = require("express");
const app = express();
// 导入 body-parser中间件解析表单数据
const bodyParser = require("body-parser");
// 解析 url-encoded格式的表单数据
app.use(bodyParser.urlencoded({ extended: false }));
// 解析json格式的表单数据
app.use(bodyParser.json());
到了这里,关于node中通过post发送请求res.body获取不到数据的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!