gpt4 book ai didi

go - Negroni:将上下文从中间件传递到处理程序

转载 作者:IT王子 更新时间:2023-10-29 02:12:36 24 4
gpt4 key购买 nike

我正在尝试将 Gorilla session 添加到 Negroni 中间件处理程序中的请求上下文,以便我可以在我的 Gorilla Mux 处理程序中访问它。这是我的代码的精简版本:

// Session Middleware function
func sessMid(w http.ResponseWriter, r *http.Request, next
http.HandlerFunc) {
ctx := r.Context()
s, _ := store.Get(r, "user") // store is a CookieStore
ctx = context.WithValue(ctx, "example", s)

if !loggedIn() {
http.Redirect(w, r, "/login", http.StatusFound)
}

next(w, r.WithContext(ctx))
}

// Page handler
func pgHandler(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
s, ok := ctx.Value("example").(*sessions.Session)
// ok returns false here, meaning that the session was not returned successfully.
}

希望这是有道理的。谁能指出我做错了什么?

最佳答案

重定向语句正在接收没有包含 session 的新上下文的原始请求。这里也需要用到WithContext(ctx)函数:

// Session Middleware function
func sessMid(w http.ResponseWriter, r *http.Request, next
http.HandlerFunc) {
ctx := r.Context()
s, _ := store.Get(r, "user") // store is a CookieStore
ctx = context.WithValue(ctx, "example", s)

if !loggedIn() {
// Make sure to add the context to the request sent in the Redirect
http.Redirect(w, r.WithContext(ctx), "/login", http.StatusFound)
}

next(w, r.WithContext(ctx))
}

感谢@jmaloney送我走上正确的道路。

关于go - Negroni:将上下文从中间件传递到处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41876310/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com