7

我在 expressjs 应用程序中使用 express-validator 5.2.0。我在表单数据上实现了验证。但它不会捕获错误并给出空的错误对象。当验证运行时,它在我提交空表单时显示“无错误”。它应该遵循错误路径并且应该显示错误。

var express = require('express');
var router = express.Router();
const { check, validationResult } = require('express-validator/check');

router.post('/register', [
  check('firstName', 'First Name is required').isEmpty(),
  check('lastName', 'Last Name is required').isEmpty(),
  check('username', 'User Name is required').isEmpty(),
  check('password', 'Password is required').isEmpty()
], (req, res, next)=>{
  let errors = validationResult(req);
  if (!errors.isEmpty()) {
    console.log(errors.mapped());
    console.log("errors")
    return res.render('auth/register', { errors: errors.mapped() })
  }else{
    console.log('no errors')
    return res.render('auth/login');
  }

4

2 回答 2

23

check('firstName', 'First Name is required').isEmpty() 正在强制firstName为空。
您需要将最后一部分更改为.not().isEmpty(),以便反转isEmpty验证器。

您可能也感兴趣:https ://github.com/express-validator/express-validator/issues/476

于 2018-06-12T05:16:43.307 回答
6

在您的代码段中,您没有添加验证器来检查值是否不为空。您可以通过执行以下操作来实现:

check('firstName', 'First Name is required').notEmpty()

.notEmpty()添加一个验证器来检查一个值是否不为空;即长度为 1 或更大的字符串。

https://express-validator.github.io/docs/validation-chain-api.html#notempty

于 2020-06-14T18:47:11.547 回答