我用golang 做了一个网站 https://887d.com 但是需要获取前一页的完整URL,我现在只能做到获取当前页,如下函数
```
func Geturl(r *http.Request) string {
scheme := "http://"
if r.TLS != nil {
scheme = "https://"
}
return strings.Join([]string{scheme, r.Host, r.RequestURI}, "")
}```
有疑问加站长微信联系(非本文作者)