防止复选框输入条件出现无限循环

时间:2019-02-24 21:34:42

标签: javascript express checkbox

我有一个表单提交过程,在此过程中,我的中间件带有if / else语句,它们在触发身份验证控制器之前验证是否存在值,但是由于某种原因,我的Checkbox输入字段在表单提交时触发ERR_TOO_MANY_REDIRECTS即使在提交后尝试加载表单页面时也是如此。我进行undefined检查的原因是因为我注意到如果不检查该值,则主体不包含此输入。是否有更好的条件可用来检查此值是否已选中,从而消除了我看到的重定向循环?有没有办法将此中间件设置为仅在路由的POST部分触发?

我用于/sign-up的中间件:

siteRoutes.use('/sign-up', function(req, res, next){
    console.log("Sign Up Use")
    console.log(req.body);
    models.User.findOne({
        where: {
            email: req.body.email
        }
    }).then(function(existingUser) {
    if (existingUser){
        req.flash('error', 'Email already exists.');
        return res.redirect('/sign-up');
    } else if (req.body.termsOfService === undefined) {
        console.log("TOS Check")
        req.flash('error', 'Accept terms');
        return res.redirect('/sign-up');
    } else {
        console.log("Next")
        next();
    }
    });
});

输入字段:

   <input type="text" class="form-control" id="sign-up-fist-name"  name="firstName" value="" placeholder="First Name">
                <br />
                    <input type="text" class="form-control" id="sign-up-last-name"  name="lastName" value="" placeholder="Last Name">
                <br />
                    <input type="text" class="form-control" id="sign-up-username"  name="email" value="{{user.email}}" placeholder="Email Address">
                <br />
                    <input type="password" class="form-control" id="sign-up-password"  name="password" value="" placeholder="Password">
                <br />
                    <input type="password" class="form-control" id="sign-up-confirm-password"  name="confirmPassword" value="" placeholder="Confirm Password">
                <br />
                    <label>
                        <input type="checkbox" name="termsOfService"> I confirm that I have read, consent and agree to Synotate's <a href="/terms-of-service">Terms of Service</a> and <a href="privacy-policy">Privacy Policy</a>
                    </label>

1 个答案:

答案 0 :(得分:1)

使用req.method确定请求是GET还是POST

req.body.termsOfService === undefined更改为req.method === 'POST' && req.body.termsOfService === undefined

另一种方法是使用siteRoutes.getsiteRoutes.post代替siteRoutes.use