我有一个 beego 应用程序,我需要在其中获取客户端 IP 地址并以相同的格式或字符串格式将其发送到服务器。
如何获取客户端的 IP 地址,以便将其发送到服务器并在服务器端显示。
l_channel_ip := "10.11.0.123"
在这里,我现在对值进行硬编码。但我不希望它像这样被硬编码。相反,客户端 IP 应存储在l_channel_ip
.
此代码为您提供 IP 地址
s := this.Ctx.Input.IP()
使用 beego internal 自定义解析。
此代码将 ip 存储在“l_channel_ip”变量中
func (this *baseController) getClientIp() string {
s := strings.Split(this.Ctx.Request.RemoteAddr, ":")
return s[0]
}
l_channel_ip := getClientIp()