Giter VIP home page Giter VIP logo

Comments (7)

JosephTurner avatar JosephTurner commented on July 17, 2024

Why are you handling "/" again with http.Handle?

from mux.

achedeuzot avatar achedeuzot commented on July 17, 2024

I have been following examples & documentation (Gorilla Mux first example):

r := mux.NewRouter()
r.HandleFunc("/", HomeHandler)
r.HandleFunc("/products", ProductsHandler)
r.HandleFunc("/articles", ArticlesHandler)
http.Handle("/", r)

How can I register the router with the http package then ?

from mux.

JosephTurner avatar JosephTurner commented on July 17, 2024

Yeah nevermind, it doesn't make a difference. I pass the router into ListenAndServe instead of nil.

from mux.

JosephTurner avatar JosephTurner commented on July 17, 2024

Ok the problem comes from line 379 in route.go in Subrouter()

r.addMatcher(router)

When you call Subrouter(), it is making a change to the route.

from mux.

kisielk avatar kisielk commented on July 17, 2024

Closing this for now since it's vague. If you are still having problems please file a new issue with a runnable code example.

from mux.

fesja avatar fesja commented on July 17, 2024

Hi kisielk!

I'm having this problem. You can see here a code example that other person posted on SO almost a year ago. Here you can find another example in SO.

The problem appears when we try to get another route URL form inside a Handler. For example from the PostUpdateHandler we want to redirect the user to the PostShowHandler. On those examples people (and myself) are trying to do:

rootUrl, err := mux.CurrentRoute(r).Subrouter().Get("PostShow").URL()

but this changes the original Router. So then it's when we have the problem with the 404 error.

A solution could be to use a global router variable, but I'm trying to avoid having global variables (I'm doing a clean architecture). I've tried to add the router to my Handler class but it appears to be nil on the Handler.

Any idea on how can we solve this?

thanks a lot!

from mux.

kisielk avatar kisielk commented on July 17, 2024

You just have to save the router or subrouter somewhere where you can access it from your route to call the URL() method. Either a global or a field on your handler struct would work. I usually just use global routers and subrouters in the majority of apps. If they are only modified at initialization time there's nothing wrong with that...

from mux.

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.