Giter VIP home page Giter VIP logo

Comments (3)

zenazn avatar zenazn commented on May 13, 2024

I'm not really thrilled with this. I think it encourages really long (and not particularly understandable) lines, which is a personal pet peeve.

But perhaps I'm misunderstanding. Could you explain the use case you're trying to solve with this?

(Fun fact: middleware isn't really "inherited" from the parent router—first the parent goes through its middleware stack, and then the child goes through its stack. The child router in this case has no idea what middleware might or might not have come before it)

from goji.

elithrar avatar elithrar commented on May 13, 2024

It would ultimately be a convenience method (as above) although I can see the chance for abuse/a > 200 character line! I'm happy for this to be closed given it's solely a style request.

In the case of parent middleware and sub router middleware: this would mean you can't use Insert to re-order middleware beyond the current sub-router, correct? And the same would go for abandoning middleware outside the subrouters' stack?

(not in front of a PC right now so cannot check!)

from goji.

zenazn avatar zenazn commented on May 13, 2024

Yeah, I'm not particularly seeing the convenience over many lines of Use's. I'm going to close this if that's okay.

And that's correct. Each Mux is completely independent, and a Mux can't manipulate middleware it doesn't know about. This is pretty much the only way this can possibly work—consider:

a := web.New(); a.Use(something);
b := web.New(); b.Use(somethingElse);
goji.Handle("/a/*", a)
goji.Handle("/b/*", b)
a.Handle("/a/b/*", b)

Now b has two middleware stacks, depending on what path was used to reach it.

from goji.

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.