- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
TWebRequest
有两个方法用于检索客户端 IP 地址:
来自docs of RemoteIP :
Specifies the IP of the remote target machine associated with the HTTP request message. Read the RemoteIP property to obtain the IP address of the remote target machine associated with the HTTP request message.
Indicates the remote IP address of the client associated with the HTTP request message. Read RemoteAddr to obtain the IP address of the source of the Web client request.
它们看起来非常接近,但 RemoteIP 返回一个空字符串。我想检索客户端IP地址,正确的方法是什么?
最佳答案
如果我们查看源代码,我们会在 TWebRequest 的声明中发现以下内容
property RemoteIP: string read GetRemoteIP;
property RemoteAddr: string index 21 read GetStringVariable;
实现:
function TWebRequest.GetRemoteIP: string;
begin
Result := EmptyStr;
end;
而 GetStringVariable 是一个虚拟方法。
让我们看一下子类之一 - TISAPIRequest,我们会发现以下内容:
LResult := GetFieldByNameA(ServerVariables[Index]);
ServerVariables[21] 是“REMOTE_ADDR” header ,显示客户端或代理服务器的 IP。
但是 GetRemoteIP 没有实现。
请求中似乎没有使用 RemoteIP,因为 TCGIRequest、TApacheRequest 和 TWinCGIRequest 也没有实现 GetRemoteIP。
关于Delphi Web.HTTPApp.TWebRequest RemoteIP VS RemoteAddr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45920491/
TWebRequest 有两个方法用于检索客户端 IP 地址: 远程IP 远程地址 来自docs of RemoteIP : Specifies the IP of the remote target
我是一名优秀的程序员,十分优秀!