关于 *http.requset疑问

hellsam · · 821 次点击
~~~ <a href="/user/polaris" title="@polaris">@polaris</a> 我这样写 貌似获取IP为空 不知道为什么 也没报错 type CeshiIP struct { GetIP http.Request } func main() { http.HandleFunc(&#34;/&#34;, test123) err := http.ListenAndServe(&#34;:82&#34;, nil) if err != nil { panic(err) } } func test123(w http.ResponseWriter, r *http.Request) { aa := new(CeshiIP) fmt.Fprintln(w, aa.GetIP.RemoteAddr) //用这个就得不到IP了空白 //fmt.Fprintln(w, r.RemoteAddr) //用这个获取IP正确的 } ~~~
#6
更多评论
额 有人能帮助吗
#1
polaris
社区,需要你我一同完善!
你看看你发的帖子,你能读通吗?感觉语句不通顺,看不太明白啊~
#2