Coder Social home page Coder Social logo

Comments (2)

gladchinda avatar gladchinda commented on September 1, 2024

Hi @talvane

Thanks for taking out time to go through this code example and I am really glad that you found it useful. There is however a reason why I chose to reference the route using req.route.path as opposed to using just req.path.

The reason being for routes that also have route parameters. Consider this route:

app.post('/api/v1/:collection', function (req, res, next) {
  // route handling logic here...
});

The following table shows the results of req.route.path and req.path for some request paths that match the above route.

req.path req.params.collection req.route.path
/api/v1/authors authors /api/v1/:collection
/api/v1/posts posts /api/v1/:collection
/api/v1/comments comments /api/v1/:collection
/api/v1/subscribers subscribers /api/v1/:collection

It becomes very clear why req.route.path is being used as the basis for defining a validation schema to match multiple target paths, as opposed to creating separate schemas for each path. However, if the requirement of the application is that a separate schema be created for each path, then the middleware can be modified as seems fit.

from joi-schema-validation-sourcecode.

talvane avatar talvane commented on September 1, 2024

Hey @gladchinda.

I understood, it makes perfect sense even that way, I hadn't thought.
Tks for the feedback. :)

from joi-schema-validation-sourcecode.

Related Issues (1)

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.