4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

typeormでclass-validatorを使う

Posted at

Entity Listenerの@BeforeInsert()@BeforeUpdate()を使って自動でvalidateする。手動でもできるのでおすすめ。

import { IsNotEmpty, validate } from 'class-validator';
import { BeforeInsert, BeforeUpdate, Column, Entity, PrimaryGeneratedColumn } from 'typeorm';

@Entity()
export class User {
  @PrimaryGeneratedColumn() 
  id: number;

  @Column()
  @IsNotEmpty()
  firstName: string;

  @BeforeInsert()
  @BeforeUpdate()
  async validate(): Promise<void> {
    for (const error of await validate(this)) {
      throw new Error(JSON.stringify(error.constraints));
    }
  }
}
4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?