Hello,
I'm wondering if it is ok to do this ?
////
package main
import (
"context"
"fmt"
"log"
"net/http"
"github.com/gorilla/mux"
)
func main() {
addr := "127.0.0.1:8080"
r := mux.NewRouter()
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
newReq := r.WithContext(context.WithValue(r.Context(), 0,
"bla"))
*r = *newReq
// set context
})
r.Use(func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r
*http.Request) {
next.ServeHTTP(w, r)
ctx := r.Context()
v, ok := ctx.Value(0).(string)
if !ok {
fmt.Println("could not find context value")
} else {
fmt.Println(v)
}
})
})
s := &http.Server{
Addr: addr,
Handler: r,
}
if err := s.ListenAndServe(); err != nil && err !=
http.ErrServerClosed {
log.Fatalf("could not listen on %s : %v", addr, err)
}
}
////
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/golang-nuts/8291e73e-a01a-4cca-8101-18c18051f16cn%40googlegroups.com.