smarty-team/react-arco-admin

NestJS使用ValidationPipe使用正则表达式校验会偶发校验问题

Opened this issue · 0 comments

再现方法

  app.useGlobalPipes(new ValidationPipe({
    forbidUnknownValues: false
  }))
  @Matches(regMobileCN, { message: '请输入正确手机号' })
  readonly phoneNumber: string;

同一输入内容,使用@matches会出现有时候校验通过有时候校验不通过的问题