如何在 Revel 中获取客户端的 IP 地址?
在 Beego 中:
func (this *baseController) getClientIp() string {
s := strings.Split(this.Ctx.Request.RemoteAddr, ":")
return s[0]
}
相关分类