在我的请求处理程序中,我有一个条件语句,我需要在其中获取 http 状态代码。
func PostHandler(w http.ResponseWriter, r *http.Request) {
params := mux.Vars(r)
idStr := params["id"]
// how would I get the 307 status code, to decide whether to redirect or not?
if w.StatusCode != 307 { // does not work, no such field - why not???
http.Redirect(w, r, idStr, 307)
} else {
RenderTemplate()
}
}
m.HandleFunc("/{id:.*}", PostHandler).Methods("POST") // this is matched first to intercept POST requests with status 307
m.HandleFunc("/{id:.*}", MyHandler).Methods("GET", "POST")
我做了一个例子来帮助说明这个具体的场景:
http://play.golang.org/p/YZgTsVO524
我将如何实现这一目标?
基本上我使用 307 因为我需要重新发送我的 POST 值 http.Redirect(w,r, url, code) 目标。Afaik 这似乎是执行此操作的最佳方法,但同样,如果没有状态代码,我将无法执行此操作。
附加问题:使用 307 是一个糟糕的解决方案吗?如果是这样,什么是更好的选择?
尚方宝剑之说
呼啦一阵风
相关分类