MongoDB 和 class-validator 唯一验证 - NESTJS
MongoDB and class-validator unique validation - NESTJS
TL;DR
我正在尝试 运行 在我的验证器中进行 mongoose 查询
你好,我正在尝试制作一个自定义装饰器,如果该字段的值已经存在,它会抛出错误。我正在尝试在验证路由的 class 中使用猫鼬模型。与 resolver/controller 不同,@InjectModel()
在验证器 class 中不起作用。我的验证器是这样的
import { getModelToken, InjectModel } from "@nestjs/mongoose";
import {
ValidationArguments,
ValidatorConstraint,
ValidatorConstraintInterface,
} from "class-validator";
import { Model } from "mongoose";
import { User } from "../schema/user.schema";
@ValidatorConstraint({ name: "IsUniqueUser", async: true })
export class UniqueValidator implements ValidatorConstraintInterface {
constructor(
@InjectModel(User.name)
private readonly userModel: Model<User>,
) {}
async validate(value: any, args: ValidationArguments) {
const filter = {};
console.log(this.userModel);
console.log(getModelToken(User.name));
filter[args.property] = value;
const count = await this.userModel.count(filter);
return !count;
}
defaultMessage(args: ValidationArguments) {
return "$(value) is already taken";
}
}
我使用上述装饰器的 DTO 是
@InputType({})
export class UserCreateDTO {
@IsString()
name: string;
@IsUniqueUser({
message: "Phone number is already taken",
})
@Field(() => String)
phone: string;
}
控制台说
cannot read value count of undefined
暗示 userModel
未定义。
InShort
我想 运行 我的验证器中的查询。我该怎么做?
根据this issue(你不能注入依赖项)
您应该添加 main.ts
import { useContainer } from 'class-validator';
useContainer(app.select(AppModule), {fallbackOnErrors: true});
然后您需要将 UniqueValidator
添加到您的模块中,就像 @Injectable()
class
所以
...
providers: [UniqueValidator],
...
然后,在您的 DTO 中您可以添加:
@Validate(UniqueValidator, ['email'], {
message: 'emailAlreadyExists',
})
TL;DR
我正在尝试 运行 在我的验证器中进行 mongoose 查询
你好,我正在尝试制作一个自定义装饰器,如果该字段的值已经存在,它会抛出错误。我正在尝试在验证路由的 class 中使用猫鼬模型。与 resolver/controller 不同,@InjectModel()
在验证器 class 中不起作用。我的验证器是这样的
import { getModelToken, InjectModel } from "@nestjs/mongoose";
import {
ValidationArguments,
ValidatorConstraint,
ValidatorConstraintInterface,
} from "class-validator";
import { Model } from "mongoose";
import { User } from "../schema/user.schema";
@ValidatorConstraint({ name: "IsUniqueUser", async: true })
export class UniqueValidator implements ValidatorConstraintInterface {
constructor(
@InjectModel(User.name)
private readonly userModel: Model<User>,
) {}
async validate(value: any, args: ValidationArguments) {
const filter = {};
console.log(this.userModel);
console.log(getModelToken(User.name));
filter[args.property] = value;
const count = await this.userModel.count(filter);
return !count;
}
defaultMessage(args: ValidationArguments) {
return "$(value) is already taken";
}
}
我使用上述装饰器的 DTO 是
@InputType({})
export class UserCreateDTO {
@IsString()
name: string;
@IsUniqueUser({
message: "Phone number is already taken",
})
@Field(() => String)
phone: string;
}
控制台说
cannot read value count of undefined
暗示 userModel
未定义。
InShort
我想 运行 我的验证器中的查询。我该怎么做?
根据this issue(你不能注入依赖项)
您应该添加 main.ts
import { useContainer } from 'class-validator';
useContainer(app.select(AppModule), {fallbackOnErrors: true});
然后您需要将 UniqueValidator
添加到您的模块中,就像 @Injectable()
class
所以
...
providers: [UniqueValidator],
...
然后,在您的 DTO 中您可以添加:
@Validate(UniqueValidator, ['email'], {
message: 'emailAlreadyExists',
})