检查表单中的输入是否使用nodejs设置
这个问题在这里已经有了答案:
要获得发布数据,您需要使用body-parser。
然后你需要一个路由处理程序来处理发布数据。
router.post('/', function (req, res, next) {
// if you set up body parser correctly, all your form data will be accessible in `req.body`
console.log(req.body) ;
const errors = validate(req);
if(errors.length) {
// show errors
return;
}
// do something with form data.
});
function validate(req) {
const errors = [];
if (! req.body.firstName) {
errors.push('First name is required');
}
// do the same for all input fields
return errors;
}
链接地址: http://www.djcxy.com/p/27317.html