gpt4 book ai didi

node.js - 使用 POST 请求传递 JSON 数据后,无法从 Postman 获取响应响应

转载 作者:太空宇宙 更新时间:2023-11-04 03:13:28 27 4
gpt4 key购买 nike

我正在使用包含电子邮件和密码的 JSON 数据从 Postman 发出 POST 请求,但是当我尝试在 Postman 的响应窗口中显示时,它没有显示任何内容。

POST 请求似乎没有通过请求发送 JSON 数据,或者我在访问请求数据时可能出现问题。

这是我的代码:

    const express = require("express");
const app = express();

const database = {
users: [
{
id: "1234",
name: "john",
email: "john@gmail.com",
password: "john",
entries: 0,
joined: new Date()
},
{
id: "123",
name: "sally",
email: "sally@gmail.com",
password: "sally",
entries: 0,
joined: new Date()
}
]
};

app.get("/", (req, res) => {
res.send("This is working Get");
});

app.post("/signin", (req, res) => {
res.json(req.body);
});

app.listen(3000, () => {
console.log("Server Started at port number 3000");
});

enter image description here

最佳答案

第 1 步: 如果您使用 raw(application/json) 发出请求,那么您需要安装下面的 npm 来解析您的请求数据,

npm install body-parser --save

请通过以下链接了解更多信息:

https://www.npmjs.com/package/body-parser

第 2 步:您需要在服务器文件中添加以下行

var bodyParser = require("body-parser");
app.use(bodyParser.urlencoded({
extended: false
}));
app.use(bodyParser.json())

第 3 步:集成 bodyParser 后,您可以使用 req.body 访问请求数据

这是您的解决方案代码:

var express = require("express");
var bodyParser = require("body-parser");

var app = express();

const database = {
users: [{
id: "1234",
name: "john",
email: "john@gmail.com",
password: "john",
entries: 0,
joined: new Date()
},
{
id: "123",
name: "sally",
email: "sally@gmail.com",
password: "sally",
entries: 0,
joined: new Date()
}
]
};

app.use(bodyParser.urlencoded({
extended: false
}));
app.use(bodyParser.json())

app.post("/signin", (req, res) => {
res.json(req.body);
});

app.listen(8080, () => {
console.log("Server has been started");
});

关于node.js - 使用 POST 请求传递 JSON 数据后,无法从 Postman 获取响应响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59711294/

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