duanban4769 2016-12-06 22:09
浏览 66
已采纳

使用Golang Gorilla软件包设置回调

Is there an easy way to set a callback function that is called on every HTTP request made to a gorilla/mux HTTP webserver? They don't seem to have a notion of setting a callback function in their docs.

I wanted to check one of the headers for some information on every call to my server.

  • 写回答

2条回答 默认 最新

  • douhui4831 2016-12-06 22:44
    关注

    gorilla/mux itself is just a router and dispatcher, which, although technically could do what you're asking, is not really what it's designed for.

    The "idiomatic" approach is to wrap your handler with middleware that decorates your handler with any additional functions, like one to check headers for some information on every call.

    Expanding on the gorilla/mux full example, you could do something like:

    package main
    
    import (
            "log"
            "net/http"
    
            "github.com/gorilla/mux"
    )
    
    func HeaderCheckWrapper(requiredHeader string, original func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
            return func(w http.ResponseWriter, r *http.Request) {
                    if foo, ok := r.Header[requiredHeader]; ok {
                            // do whatever with the header value, and then call the original:
                            log.Printf("Found header %q, with value %q", requiredHeader, foo)
                            original(w, r)
                            return
                    }
                    // otherwise reject the request
                    w.WriteHeader(http.StatusPreconditionFailed)
                    w.Write([]byte("missing expected header " + requiredHeader))
            }
    }
    
    func YourHandler(w http.ResponseWriter, r *http.Request) {
            w.Write([]byte("Gorilla!
    "))
    }
    
    func main() {
            r := mux.NewRouter()
            // Routes consist of a path and a handler function.
            r.HandleFunc("/", HeaderCheckWrapper("X-Foo-Header", YourHandler))
    
            // Bind to a port and pass our router in
            log.Fatal(http.ListenAndServe(":8000", r))
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂