检查表单中的输入是否使用nodejs设置

这个问题在这里已经有了答案:

  • 如何检查一个对象是否在JavaScript中有属性? 22个答案

  • 要获得发布数据,您需要使用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

    上一篇: checking if inputs in a form are set using nodejs

    下一篇: Checking whether toString has been assigned