Giter VIP home page Giter VIP logo

Comments (5)

heisGarvit avatar heisGarvit commented on July 17, 2024 10

Please add 404 code to https://github.com/gorilla/mux and http://www.gorillatoolkit.org/pkg/mux pages it took a while to look for it!

mux.NewRouter()
r.NotFoundHandler = http.HandlerFunc(func (w http.ResponseWriter, req *http.Request) {
                 // Handle 404
}

from mux.

amlang avatar amlang commented on July 17, 2024 5

for anybody googled that; a complete example to copy and paste

   ...	
   router := mux.NewRouter()
   router.NotFoundHandler = Handle404()
  ...
}

// Handle404 ...
func Handle404() http.Handler {
	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		json.
		    NewEncoder(w).
		    Encode(
		        HTTPError{
			    Code:    string(http.StatusNotFound),
			    Message: http.StatusText(http.StatusNotFound),
			})
	})
}

from mux.

zikes avatar zikes commented on July 17, 2024 2

It's also missing from the tests, which is where I usually look for usage when it's not documented.

In case anyone else Googles this and needs it:

func Handle404(w http.ResponseWriter, r *http.Request) {
    // Handle 404
}

r := mux.NewRouter()
r.NotFoundHandler = Handle404

from mux.

elithrar avatar elithrar commented on July 17, 2024

@evantbyrne @zikes What do you think is missing at the moment? It's documented as part of the Router type:

type Router struct {
    // Configurable Handler to be used when no route matches.
    NotFoundHandler http.Handler

    // If true, do not clear the request context after handling the request
    KeepContext bool
    // contains filtered or unexported fields
}

If you think it should be included in the main body of the documentation, submit a PR (following the format for code samples) ;)

from mux.

kisielk avatar kisielk commented on July 17, 2024

I have started adding some example tests (not pushed yet). Would probably be nice to have one of those.

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.