Giter VIP home page Giter VIP logo

Comments (7)

ruiaraujo012 avatar ruiaraujo012 commented on May 28, 2024 1

Yes, it works, thank you for your answer.

Have a continuation of a good work.

from valibot.

fabian-hiller avatar fabian-hiller commented on May 28, 2024

This is because 9000 matches v.literal(9000) as well as v.number('required.academicDegree'). To make it work you need to make the object schemas strict by adding v.never() as the rest argument. Otherwise, object will remove unknown entries. Test it in our playground.

from valibot.

ruiaraujo012 avatar ruiaraujo012 commented on May 28, 2024

Oh, I didn't know that. Thank you. I have other places where I have the same and it works, but I'll put v.never() to be safe.

Should I use the v.never() on all my variant objects, or just the ones that I have literals?

from valibot.

fabian-hiller avatar fabian-hiller commented on May 28, 2024

By default, object ignores unknown entries. This makes validation faster, and it's probably the behaviour most people expect. Use never whenever you want to make your object validation strict to not allow unknown entities. Note: This API and behavior may change in the next release.

from valibot.

ruiaraujo012 avatar ruiaraujo012 commented on May 28, 2024

When you say unknown properties, are the ones not specified in the schema, or the ones with v.unknown()? The first case, right?

Note: This API and behavior may change in the next release.

It's good to know that. Can I ask when are you planing to release it?

from valibot.

ruiaraujo012 avatar ruiaraujo012 commented on May 28, 2024

This is because 9000 matches v.literal(9000) as well as v.number('required.academicDegree'). To make it work you need to make the object schemas strict by adding v.never() as the rest argument. Otherwise, object will remove unknown entries. Test it in our playground.

But now I'm having another issue, if you put a valid schema like this, you got an error saying "Invalid type: Expected never but received \"Portugal\" for every valid field.

from valibot.

fabian-hiller avatar fabian-hiller commented on May 28, 2024

When you say unknown properties, are the ones not specified in the schema

Yes, that's exactly what I mean.

It's good to know that. Can I ask when are you planing to release it?

Unfortunately not. But you can follow the progress in #502.

But now I'm having another issue...

You are right. Sorry for that. I have another solution for you with v.number([v.notValue(9000)]). Check it out in our playground.

from valibot.

Related Issues (20)

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.