gpt4 book ai didi

node.js - 如何获取带有json数据的API post请求

转载 作者:太空宇宙 更新时间:2023-11-03 22:57:49 24 4
gpt4 key购买 nike

我正在尝试使用 postman 和正文原始数据发出 API 请求,但我无法读取服务器端的数据。

我的要求: http://prntscr.com/n38hes

http://prntscr.com/n38hq9

我已经尝试过:

app.post('/test', function (req, res) {
console.log(req.query)
})

和:

app.post('/test', function (req, res) {
console.log(req.body)
})

但它们都打印 {}

我想获取我使用 postman 发出的请求的用户名和密码。

最佳答案

确保您已配置正文解析器。

var bodyParser = require('body-parser');

//here app is express app
app.use(bodyParser.urlencoded({
extended: true
}));
app.use(bodyParser.json());

关于node.js - 如何获取带有json数据的API post请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55362521/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com