当我运行这个命令时curl -vd '{"NickName":"Marry","Password":"pwd"}' -H "Content-type: application/json" http://127.0.0.1:3000/signin
,我
No metadata found. There is more than once class-validator version installed probably. You need to flatten your dependencies.
在服务器端打印,并且validate
没有正确执行。在这之前,我npm install
有一些依赖:
npm install --save routing-controllers
npm install --save class-transformer
npm install --save class-validator
有人可以帮忙吗?我该如何解决这个问题?谢谢!
import { Entity, Column, PrimaryGeneratedColumn, CreateDateColumn, UpdateDateColumn } from 'typeorm';
import { Length } from 'class-validator';
import * as ErrorCode from '../error/errorcode'
@Entity()
export class User {
@PrimaryGeneratedColumn()
@Column({
name: "id"
})
Id?: number;
@Column({
name: "nickname"
})
@Length(1, 20, {
message: "NickName must be 1 to 20 characters",
context: {
errorCode: ErrorCode.ParamLengthNotInRange
}
})
Nickname: string;
@Column({
name: "password"
})
@Length(6,20)
Password: string;
//constructor(input : { Id : number , Nickname: string, Password: string}){
constructor(input : { Nickname: string, Password: string}){
//this.Id = input.Id;
this.Nickname = input.Nickname;
this.Password = input.Password;
}
}
import { JsonController, Post, Body, Req } from "routing-controllers";
import { validate, ValidationError } from 'class-validator';
import {User} from '../entity'
@JsonController()
export class UserController {
@Post('/signin')
async signin(@Body() user: User) {
const errors: ValidationError[] = await validate(user)
if (errors && errors.length > 0) {
console.log(errors[0].contexts!['Length'].errorCode)
}
console.log(user)
return 'this is signin'
}
}