idhttpserver如何获得网页提交的数据 ( 积分: 100 )

  • 主题发起人 主题发起人 maxim88
  • 开始时间 开始时间
M

maxim88

Unregistered / Unconfirmed
GUEST, unregistred user!
网页提交数据如下
http://127.0.0.1/ID=012345?name=0&Submit=%C9%E8%D6%C3
程序中使用ARequestInfo.Document只能得到ID=012345
后面的数据‘?name=0&Submit=%C9%E8%D6%C3’如何得到?
 
网页提交数据如下
http://127.0.0.1/ID=012345?name=0&Submit=%C9%E8%D6%C3
程序中使用ARequestInfo.Document只能得到ID=012345
后面的数据‘?name=0&Submit=%C9%E8%D6%C3’如何得到?
 
RequestInfo.Params

是一个TStrings类型的东西,包括参数列表了

property Params: TStrings;

Description

Params is a TString property used to store the parsed values for HTTP headers in the HTTP request. Params contains the header values after URLDecode has been used to convert the headers to their ASCII representation.

Use UnparsedParams to view the HTTP headers in their raw form.

Params is updated by TIdHTTPServer when a peer thread generates a new HTTP request.
 
知道了,是params.gettext
谢谢。
 
后退
顶部