为了账号安全,请及时绑定邮箱和手机立即绑定

{key:""} 和 {key:" "} 之间的区别,json 文件?

{key:""} 和 {key:" "} 之间的区别,json 文件?

慕哥9229398 2021-10-21 16:41:22
我正在尝试在我的快速路由器上实现验证,问题是当我通过 {title:""} 时,express-validator 没有抛出错误,但是当我通过 {title:" "} 时它可以工作。exports.postValidatorCheck = [  check("title", "The title must not we empty").isEmpty(),  check("title", "The Length of the Title should be in greater then 10").isLength({    min: 10,    max: 1500  }),  function(req, res, next) {    let errors = validationResult(req);    console.log(errors);    if (!errors.isEmpty()) {      const firstError = errors.errors.map(err => err.msg)[0];      return res.status(400).json({ error: firstError });    }    next();  }];json文件:{"title":"","body":"This is a new Post"} 没有错误JSON 文件{"title":" ","body":"This is new post"}错误如预期。
查看完整描述

2 回答

?
慕村225694

TA贡献1880条经验 获得超4个赞

验证应使用否定:

check("title", "The title must not we empty").not().isEmpty()

这将确保title不是空的,这就是我认为你的意图。


查看完整回答
反对 回复 2021-10-21
?
慕容森

TA贡献1853条经验 获得超18个赞

首先,""是一个空字符串。" "不是; 它包含一个空格字符。如果您想将任何空格计为空,您应该使用正则表达式解决方案

至于您的实际问题,您正在测试isEmpty()何时应该测试not().isEmpty().


查看完整回答
反对 回复 2021-10-21
  • 2 回答
  • 0 关注
  • 169 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信