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