golang http.Redirect()函数容易误解的地方

Posted 追忆丶年华

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang http.Redirect()函数容易误解的地方相关的知识,希望对你有一定的参考价值。

调用http.Redirect()函数后,并不会立刻进行跳转,而是继续顺序执行函数中的所有的代码后,再进行跳转。但是Redirect后面的写界面的代码不会发送到游览器前端的。

代码如下:
func Chat(w http.ResponseWriter, r *http.Request) {
  fmt.Println("Chat")
  r.ParseForm()
  withWho := r.Form.Get("withWho")

  type ToWho struct {
    Name string
  }

  if ret := CheckCookie(r); ret == "" || "" == withWho{
    url := "/login"
    http.Redirect(w,r, url, http.StatusFound)
  }

  toWho := ToWho{Name: withWho}
  t, err := template.ParseFiles("templates/html/chat.html")
  checkError(err)
  err = t.Execute(w, toWho)
  checkError(err)
}
虽然执行了红色的(Redirect)函数,但是绿色的代码还是会执行的,只是解析的chat.html文件不会像以前写到客户端上。为什么会这样?不懂啊。所以最好在Redirect后面加上Return比较好。

以上是关于golang http.Redirect()函数容易误解的地方的主要内容,如果未能解决你的问题,请参考以下文章

HTTP redirect 重定向到 HTTPS

HTTP Redirect 提供与 Location 标头相同的 url(原始)

Golang入门到项目实战 golang 函数

Golang入门到项目实战 golang匿名函数

golang 一个包内允许有重复的函数吗

golang 并发函数怎么返回