最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - how to use zod with validator.js - Stack Overflow

programmeradmin3浏览0评论

I have an application using zod but I'd like to use some methods from a different library (validator.js) zod documentation says:

Check out validator.js for a bunch of other useful string validation functions.

Not sure if that means this functions are implemented on zod, or I have to also install validator.js, in that other case how I can use both libraries together? cant find any example.

Thanks!

I have an application using zod but I'd like to use some methods from a different library (validator.js) zod documentation says:

Check out validator.js for a bunch of other useful string validation functions.

Not sure if that means this functions are implemented on zod, or I have to also install validator.js, in that other case how I can use both libraries together? cant find any example.

Thanks!

Share Improve this question asked Mar 12, 2022 at 14:27 llermalyllermaly 2,5103 gold badges19 silver badges35 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 15

I think Zod means that you could install validator.js and use their validations with Zod. Zod's refine function makes this fairly straightforward. For example if you wanted to validate a string as a credit card number using Zod and validator it might look something like this

import { z } from "zod";
import isCreditCard  from "validator/lib/isCreditCard";

const userSchema = z.object({
  name: z.string(),
  creditCard: z.string().refine(isCreditCard, {
    message: 'Must be a valid credit card number'
  }),
})

console.log(userSchema.safeParse({
  name: 'Doug',
  creditCard: '1234',
}));

console.log(userSchema.safeParse({
  name: 'steve',
  creditCard: '4000 0200 0000 0000'
}));

The first example fails with a ZodError containing our custom error message. The second example succeeds.

发布评论

评论列表(0)

  1. 暂无评论