1 回答
TA贡献1829条经验 获得超6个赞
我已经根据您提供的代码制作了一个完全编译的示例 - 但是它确实对我有用:lolcalhost:8080/chat将我重定向到localhost:8080/login 我怀疑您的浏览器可能已经设置了 cookie“auth”。
您可以按 STRG+SHIFT+I 并转到网络选项卡以查看传输的内容。检查确实没有为您设置 cookie。
我试过的代码:
package main
import "net/http"
type authHandler struct {
next http.Handler
}
func ServeHTTP(w http.ResponseWriter, r *http.Request) {
_, err := r.Cookie("auth")
if err == http.ErrNoCookie {
//not authenticated
w.Header().Set("Location", "/login")
w.WriteHeader(http.StatusTemporaryRedirect)
return
}
if err != nil {
//some other error
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
//success - call the next handler
//h.next.ServeHTTP(w, r)
w.Write([]byte("Hi"))
}
func main() {
http.HandleFunc("/chat", ServeHTTP)
http.ListenAndServe(":8080", nil)
}
- 1 回答
- 0 关注
- 109 浏览
添加回答
举报