@IsIn(values: any[]) Checks if value is in a array of allowed values. 检查值是否在允许值的数组中 @IsNotIn(values: any[]) Checks if value is not in a array of disallowed values. 检查值是否不在不允许的值数组中 类型验证装饰器 修饰器描述(英文)描述(中文) @IsBoolean() Checks if a va...
使用@IsIn(["a","b"]) 这个装饰器就好了 有用 回复 查看全部 1 个回答 推荐问题 为什么在npm install后package-lock.json中包名前有node_modules前缀? 环境: linux node 16.20.2(docker 镜像编译)发现npm install后 生成的 package-lock.json ,包名前面会增加node_modules ,例如下所示: 2 回答4.2k 阅读...
不能是空的,也就是不能是'',undefined,null IsIn 检查值是否是数组中的某个值 @IsIn(['1','2']) 输入的值必须是1,2中的一个值。 IsNotIn 校验的值不能是给定的数组中的元素 @IsIn(['1','2']) 再去校验1或者2就通不过了。 更多,阅读这里 错误信息 除了内定的错误信息,可以自己设置message属性。
不能是空的,也就是不能是'',undefined,null IsIn 检查值是否是数组中的某个值 @IsIn(['1','2']) 输入的值必须是1,2中的一个值。 IsNotIn 校验的值不能是给定的数组中的元素 @IsIn(['1','2']) 再去校验1或者2就通不过了。 更多,阅读这里 错误信息 除了内定的错误信息,可以自己设置message属性。
@IsIn(values: any[])Checks if value is in a array of allowed values.检查值是否在允许值的数组中 @IsNotIn(values: any[])Checks if value is not in a array of disallowed values.检查值是否不在不允许的值数组中 类型验证装饰器 修饰器描述(英⽂)描述(中⽂)@IsBoolean()Checks if a ...
这可以很好地工作: import { IsIn } from 'class-validator'; }) }在swagger1, Minor = 3, Warning = 浏览83提问于2020-06-10得票数 2 回答已采纳 1回答 NestJs/Swagger:如何在现有的DTO类上添加“附加属性: false`” 、、、 你好,我是Nestjs新手,我试图在一个已经有属性的DTO类上实现additionalProper...
@IsIn(values: any[]) Checks if value is in an array of allowed values. @IsNotIn(values: any[]) Checks if value is not in an array of disallowed values. Type validation decorators @IsBoolean() Checks if a value is a boolean. ...
@IsIn(values: any[]) Checks if value is in a array of allowed values. @IsNotIn(values: any[]) Checks if value is not in a array of disallowed values. Type validation decorators @IsBoolean() Checks if a value is a boolean. @IsDate() Checks if the value is a date. @IsString(...
@IsIn(values: any[]) Checks if value is in a array of allowed values. @IsNotIn(values: any[]) Checks if value is not in a array of disallowed values. Type validation decorators @IsBoolean() Checks if a value is a boolean. @IsDate() Checks if the value is a date. @IsString(...
@IsArray()@IsIn(['rsa','bbs','ecdsa'], { each:true}) keyTypes: KeyAlgorithmType[] Example #2 Source File:classes.tsFrom epicgames-freegames-node with MIT License6votes /** * A list of Discord user IDs to ping when posting the message. The IDs must be strings wrapped in quotes....