gpt4 book ai didi

javascript - Express Node JS POST。如何在不使用 url 参数的情况下向 req.body 添加值

转载 作者:太空宇宙 更新时间:2023-11-04 01:42:12 25 4
gpt4 key购买 nike

我正在使用 Express NodeJS 和 mysql 构建一个 REST API。我在使用 GET 和使用 req.params.value 以及使用 URL 参数传递值时完全没有问题。

现在我尝试使用 POST 将一些数据插入我的数据库。使用 POSTMAN 执行此操作没有任何问题,因为显然您可以设置要使用的 BODY 变量。但我在我的应用程序中意识到我将无法使用 POSTMAN 来执行此操作。我的问题(可能很愚蠢)是如何将这些 BODY 变量传递给我的 api?我是否仍然通过 url 将它们作为参数传递?如果是这样,我会使用 req.body.valuereq.params.value 吗?这是我的 POST 代码:

// Add new record 
router.post('/editablerecords/add', function (req, res) {

let qb_TxnID = req.body.txnid
let type = req.body.type;
let margin = req.body.margin;

if (!qb_TxnID || !type || !margin ) {
return res.status(400).send({ error:true, message: 'Please provide qb_TxnID, type, or margin' });
}

// res.send(qb_TxnID + ' ' + type + ' ' + margin);

connection.query("INSERT INTO pxeQuoteToClose SET ? ", { 'qb_TxnID': qb_TxnID, 'type': type, 'margin': margin }, function (error, results, fields) {
if(error){
res.send(JSON.stringify({"status": 500, "error": error, "response": null}));
//If there is error, we send the error in the error section with 500 status
} else {
res.send(JSON.stringify({ error: false, data: results, message: 'New record has been created successfully.' }));
//If there is no error, all is good and response is 200OK.
}

});
});

最佳答案

这取决于您如何发出请求,作为 XMLHttpRequest 调用还是通过表单,但在这种情况下它肯定不会使用参数。根据您的要求,这里有三个选项可将数据发送到您的 API,根据您的情况,我建议使用最后一个。

1 - 您可以使用表单并使操作指向您的端点。在这种情况下,您必须将 x-www-form-urlencoded 数据的 bodyParser 中间件添加到您的 Express 应用程序中。如果您使用body-parser库就像 app.use(bodyParser.urlencoded([options])) 一样简单。数据将在req.body中提供.

2 - 您可以发送网址中的所有数据,但在查询字符串中,而不是参数中。例如:https://yourapi.com/editablerecords/add?qb_TxnID=data_id&type=data_type&margin=data_margin 。所有数据都将在 req.query 中提供。目的。无需添加任何解析器。

3 - 最后但并非最不重要的一点是,我建议使用 XMLHttpRequest 将数据作为 json 正文发送。为了帮助您,您可以使用像 axios 这样的库。或fecth但原理保持不变:您使用数据对象设置您的正文,然后在 req.body 上检索它。在你的API上。看到您的代码,我确实假设您正在使用主体解析器,但如果情况并非如此,您应该使用 app.use(bodyParser.json()) 添加中间件.

希望我已经回答了您的问题并对您有所帮助。

关于javascript - Express Node JS POST。如何在不使用 url 参数的情况下向 req.body 添加值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52541144/

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