gpt4 book ai didi

javascript - Express.js 访问序列化表单数据的字段

转载 作者:行者123 更新时间:2023-12-03 06:38:03 27 4
gpt4 key购买 nike

我正在努力访问 Express 路由器中序列化表单数据的特定字段。

这是我的 ajax 请求:

var formData = $("#add-fut-account-form").find("select, textarea, input").serialize();
$.ajax({
url: "/accounts/insert",
type: "POST",
data: {formData},
success: function (response) {
$("#addFutAccountResponse").append(response);
},
error: function (xhr) {
alert("Error while trying to insert a new account!");
}
})

这是我的路由器:

router.post('/insert', function(req, res)
{
var formData = req.body.formData;
console.log(formData);
});

我的 console.log() 输出:

email=kentor%40gmail.com&password=dsadsa&secret=123&platform=P&account-type=x&proxy=&rpm=8&threshold=3.5&optional-comment=&is-active=on

我的问题:

我应该如何序列化/发送/接收我的表单数据,以便我可以轻松地从表单访问特定字段(例如电子邮件、密码)。我尝试使用 req.body.formData.email ,但它不起作用(结果:未定义)。我知道解决这个问题的两种可能的方法,但它们似乎是一种迂回的方法。因此我想知道使用express处理formdata的最佳实践是什么。

编辑:我已经在我的 app.js 中使用了 bodyParse:

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

最佳答案

尝试按如下方式制作ajax:

var formData = $("#add-fut-account-form").find("select, textarea, input").serialize();

$.ajax({
url: "/accounts/insert",
type: "POST",
data: formData,
success: function (response) {
$("#addFutAccountResponse").append(response);
},
error: function (xhr) {
alert("Error while trying to insert a new account!");
}
})

删除数据上的大括号

关于javascript - Express.js 访问序列化表单数据的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38099189/

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