Giter Site home page Giter Site logo

Comments (2)

justinas avatar justinas commented on May 5, 2024

It's really the same principle. Your middleware has to execute the wrapped handler and then do the necessary actions.

func loggingMiddleware(h http.Handler) http.Handler {
    return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
        log.Println("request started")
        h(w, r)
        log.Println("request finished")
    })
}

Django illustrates the order middleware are generally executed in really well ("View" here is the "app" handler). Basically, whatever middleware processes the request first, processes the response last. If you think about the call stack, it becomes quite obvious.

recovery processes request
recovery calls logging
  logging processes request
  logging calls csrf
     .. more nesting...
  logging processes response (if any yet)
  logging returns
recovery processes response (if any yet)
recovery returns

Of course, any part of processing is optional.

All of this stands for net/http as well. Again, one has to think of Alice as just some syntatic sugar for wrapping the handlers.

from alice.

1989car avatar 1989car commented on May 5, 2024

Oh, I get it. Thanks a lot.

from alice.

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.