HTML – Golang,GAE,重定向用户?

前端之家收集整理的这篇文章主要介绍了HTML – Golang,GAE,重定向用户?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在GAE上运行Go中重定向页面请求,以便正确显示用户的地址而无需显示重定向页面?例如,如果用户输入:
www.hello.com/1

我希望我的Go应用程序将用户重定向到:

www.hello.com/one

不诉诸:

fmt.Fprintf(w,"<HEAD><Meta HTTP-EQUIV=\"REFRESH\" content=\"0; url=/one\"></HEAD>")

解决方法

一次性:
func oneHandler(w http.ResponseWriter,r *http.Request) {
  http.Redirect(w,r,"/one",http.StatusMovedPermanently)
}

如果发生这种情况,您可以创建一个重定向处理程序:

func redirectHandler(path string) func(http.ResponseWriter,*http.Request) { 
  return func (w http.ResponseWriter,r *http.Request) {
    http.Redirect(w,path,http.StatusMovedPermanently)
  }
}

并像这样使用它:

func init() {
  http.HandleFunc("/one",oneHandler)
  http.HandleFunc("/1",redirectHandler("/one"))
  http.HandleFunc("/two",twoHandler)
  http.HandleFunc("/2",redirectHandler("/two"))
  //etc.
}
原文链接:https://www.f2er.com/html/225333.html

猜你在找的HTML相关文章