确认表单元素的name属性是否正确设置。 示例代码:
确认表单提交的url是否正确设置。 示例代码: app.post('/users/create', (req, res) => { const username = req.body.username; const password = req.body.password;
// 在此处插入和提交表单数据
res.render('success', { username: username }); });
确认是否安装了body-parser中间件。 示例代码: const bodyParser = require('body-parser'); app.use(bodyParser.urlencoded({ extended: false }));
确认表单提交的方法是否为POST。 示例代码:
下一篇:表单发送的值为空