GithubHelp home page GithubHelp logo

robertt / class-validator-formik Goto Github PK

View Code? Open in Web Editor NEW
11.0 11.0 4.0 344 KB

⚙️ An easy and small library that allows you to validate Formik forms with class-validator

License: MIT License

TypeScript 100.00%

class-validator-formik's People

Contributors

renovate-bot avatar robertt avatar yepes avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

class-validator-formik's Issues

Unhandled Rejection (TypeError): Cannot convert undefined or null to object

Given something like this:

export class Contact {
    @Length(10, 20)
    subject: string;

    @IsEmail()
    email?: string;

    @ValidateNested()
    phones: Phone[]

}

class Phone {

    @Length(3)
    preffix: string = '';

    @Length(9, 11)
    number: string = "";
}

When you use Field Array and add a new item (phone in this case) and Unhandled Rejection (TypeError): Cannot convert undefined or null to object is thowed.

image

How to use with ValidateNested?

Hi! First of all, it's one of the most useful packages I used, and thanks very much to the authors!

So my question is how to use it with ValidateNested decorator (embedded classes)?

Sample code:

export class User {
  @IsString()
  @IsNotEmpty()
  email: string;

  @IsString()
  @IsNotEmpty()
  password: string;

  @IsDefined()
  @IsNotEmptyObject()
  @IsObject()
  @ValidateNested({
    each: true,
  })
  @Type(() => ProfileDto)
  profile: ProfileDto;
}

(Please assume that ProfileDto is another validation class).

Thank you again for the further support!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.