类验证器-验证对象数组

时间:2019-10-11 14:21:34

标签: arrays typescript validation nestjs class-validator

我正在将class-validator包与NestJS一起使用,并且我正在寻找一个对象数组,这些对象需要具有两个具有相同布局的对象:

到目前为止,我有:

import { IsString, IsNumber } from 'class-validator';

export class AuthParam {
  @IsNumber()
  id: number;

  @IsString()
  type: string;

  @IsString()
  value: string;
}

import { IsArray, ValidateNested } from 'class-validator';
import { AuthParam } from './authParam.model';

export class SignIn {
  @IsArray()
  @ValidateNested({ each: true })
  authParameters: AuthParam[];
}

每个@kamilg响应(我可以强制执行2个元素):

import { IsArray, ValidateNested, ArrayMinSize, ArrayMaxSize } from 'class-validator';
import { AuthParam } from './authParam.model';

export class SignInModel {
  @IsArray()
  @ValidateNested({ each: true })
  @ArrayMinSize(2)
  @ArrayMaxSize(2)
  authParameters: AuthParam[];
}

我仍然可以传递一个空数组或包含与AuthParam不相关的其他对象的数组。

如何修改它才能获得验证?

我又如何在数组中强制使用2个必需元素? MinLength(2)似乎与字符串有关...(已解决)

5 个答案:

答案 0 :(得分:3)

@Type(() => AuthParam)添加到您的数组中,它应该可以正常工作。嵌套对象(数组)需要Type装饰器。您的代码变为

import { IsArray, ValidateNested, ArrayMinSize, ArrayMaxSize } from 'class-validator';
import { AuthParam } from './authParam.model';
import { Type } from 'class-transformer';

export class SignInModel {
  @IsArray()
  @ValidateNested({ each: true })
  @ArrayMinSize(2)
  @ArrayMaxSize(2)
  @Type(() => AuthParam)
  authParameters: AuthParam[];
}

如果使用任何异常过滤器来修改错误响应,请小心。确保您了解类验证器错误的结构。

答案 1 :(得分:2)

您可以使用以下内容:

A--B--...--H [abandoned] \ M [abandoned] / A'-B'-...--H' <-- master, origin/master

validator.arrayNotEmpty(array); // Checks if given array is not empty.

https://github.com/typestack/class-validator#manual-validation

您可能要考虑编写自定义验证器,以更好地反映您的业务需求。

答案 2 :(得分:1)


const param1: AuthParam = Object.assign(new AuthParam(), {
  id: 1,
  type: 'grant',
  value: 'password'
})

const param2: AuthParam = Object.assign(new AuthParam(), {
  id: 1,
  type: 4,
  value: 'password'
})

const signInTest = new SignInModel()
signInTest.authParameters = [param1, param2]

validate(signInTest).then(e => {
  console.log(e[0].children[0].children[0])
})

这正常工作,这是:

ValidationError {
  target: AuthParam { id: 1, type: 4, value: 'password' },
  value: 4,
  property: 'type',
  children: [],
  constraints: { isString: 'type must be a string' } }

所以我只能假设正在验证的对象不是AuthParam

instance
const param2: AuthParam = {
  id: 1,
  type: 4,
  value: 'password'
} as any

如预期的那样,此对象上没有任何装饰器(对于Nest.js控制器和来自body / req的嵌套对象而言可能是正确的),因此验证被忽略。

请检查this(tl; dr-@Type装饰表格class-transformer

答案 3 :(得分:0)

https://github.com/typestack/class-validator/pull/295

我们刚刚在v0.10.2中发布了它,希望对它有帮助!

答案 4 :(得分:0)

我知道我迟到了,但遇到了一些类型问题,然后尝试另一种方法来实现:

export class AuthParam {
    @IsNumber()
    id: number;
  
    @IsString()
    type: string;
  
    @IsString()
    value: string;
  }
<块引用>

验证函数

@ValidatorConstraint()
export class IsAuthArray implements ValidatorConstraintInterface {
    public async validate(authData: AuthParam[], args: ValidationArguments) {
        return Array.isArray(authData) && authData.reduce((a, b) => a && (typeof b.id === "number") && typeof b.type === "string" && typeof b.field === "string", true);
    }
}

export class SignInModel {
    @IsNotEmpty()
    @IsArray()
    @ArrayMinSize(2)
    @ArrayMaxSize(2)
    @Validate(IsAuthArray, {
        message: "Enter valid value .",
    })
    authParameters: AuthParam[];
  }

也许它会帮助某人?